pub struct Message<A>{
pub address: u16,
pub data: SmallVec<A>,
pub flags: MessageFlags,
}
Fields§
§address: u16
§data: SmallVec<A>
§flags: MessageFlags
Implementations§
Auto Trait Implementations§
impl<A> Freeze for Message<A>where
A: Freeze,
impl<A> RefUnwindSafe for Message<A>where
A: RefUnwindSafe,
impl<A> Send for Message<A>
impl<A> Sync for Message<A>where
A: Sync,
impl<A> Unpin for Message<A>where
A: Unpin,
impl<A> UnwindSafe for Message<A>where
A: UnwindSafe,
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