Thanks to visit codestin.com
Credit goes to docs.rs

seq

Macro seq 

Source
macro_rules! seq {
    () => { ... };
    ($sty:ty; $start:literal : $end:literal : $step:literal) => { ... };
    ($start:literal : $end:literal : $step:literal) => { ... };
    ($sty:ty; $start:expr , $end:expr , $step:expr) => { ... };
    ($start:expr , $end:expr , $step:expr) => { ... };
}
Expand description

Create a sequence object

If type is not provided, then the Seq will default to i32 type