Macro shred::seq[][src]

macro_rules! seq {
    ($head:expr, $( $tail:expr ,)*) => { ... };
}
Expand description

The seq! macro may be used to easily create a structure which runs things sequentially.

Examples

#[macro_use(seq)]
extern crate shred;

seq![SysA, SysB, SysC,]