pub struct RoleC<R>{ /* private fields */ }Available on crate feature
mpst only.Expand description
Gives the order to the
MeshedChannels related to C.
This struct should only be used in the stack field
of the MeshedChannels related
to C.
§Example
use mpstthree::role::c::RoleC;
use mpstthree::role::end::RoleEnd;
use mpstthree::role::Role; // Only used for example
type StackC = RoleC<RoleEnd>;
let _ = StackC::new(); // Only used for exampleImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for RoleC<R>
impl<R> RefUnwindSafe for RoleC<R>
impl<R> Send for RoleC<R>
impl<R> Sync for RoleC<R>
impl<R> Unpin for RoleC<R>
impl<R> UnwindSafe for RoleC<R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more