Macro total_space::messages_iter[][src]

macro_rules! messages_iter {
    ($model:expr, $configuration:expr, $($iter:tt)*) => { ... };
}

A macro for iterating on all the in-flight messages configuration.

Usage is messages_iter!(model, configuration, iterations) to iterate on the in-flight messages of the configuration. Iteration is some iterator method, as if we wrote messages.iter().iteration (e.g., iteration could be for_each(|message| ...).