Macro yarpl::plan[][src]

macro_rules! plan {
    ($Type:ident : $($Types:ident),* $(,)?) => { ... };
}

Defines a type which parses a sequence of predefined Feed types.

Example

only!(A : "a");

only!(B : "b");

only!(C : "c");

plan!(ABC : A, B, C);