Macro mpstthree::create_meshedchannels[][src]

macro_rules! create_meshedchannels {
    ($meshedchannels_name : ident, $n_sessions : literal) => { ... };
}
This is supported on crate feature macros_multiple only.
Expand description

Creates a MeshedChannels for more than 3 participants.

Arguments

  • The name of the MeshedChannels type that will be used
  • The number of participants (all together)

Example

use mpstthree::create_meshedchannels;

create_meshedchannels!(MeshedChannels, 3);

This macro is available only if MultiCrusty is built with the "macros_multiple" feature.