Macro mpstthree::create_offer_type_multi[][src]

macro_rules! create_offer_type_multi {
    ($type_name : ident, $meshedchannels_name : ident, $nsessions : literal) => { ... };
}
Expand description

OFFER Create the OfferMpst type to be used with more than 3 participants.

Arguments

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

Example

use mpstthree::{create_offer_type_multi, create_meshedchannels};

create_meshedchannels!(MeshedChannels, 3);
create_offer_type_multi!(OfferMpstThree, MeshedChannels, 3);