pub struct MessageDirection {
pub receives: &'static bool,
pub sends: &'static bool,
}
Expand description
§Message Direction
Indicates the Message Direction for a specified Role.
Receives means that the specified Role is allowed to receive the message. Sends means that the specified Role allowed to send the message.
Fields§
§receives: &'static bool
§sends: &'static bool
Trait Implementations§
Source§impl Debug for MessageDirection
impl Debug for MessageDirection
Source§impl PartialEq for MessageDirection
impl PartialEq for MessageDirection
Source§impl PartialOrd for MessageDirection
impl PartialOrd for MessageDirection
impl StructuralPartialEq for MessageDirection
Auto Trait Implementations§
impl Freeze for MessageDirection
impl RefUnwindSafe for MessageDirection
impl Send for MessageDirection
impl Sync for MessageDirection
impl Unpin for MessageDirection
impl UnwindSafe for MessageDirection
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