pub struct Msg {
pub cmd: u32,
pub meta: Option<Storage>,
pub payload: Option<Storage>,
}Expand description
Representation of a received message with its optional metadata and payload.
Fields§
§cmd: u32§meta: Option<Storage>§payload: Option<Storage>Auto Trait Implementations§
impl !Freeze for Msg
impl RefUnwindSafe for Msg
impl Send for Msg
impl Sync for Msg
impl Unpin for Msg
impl UnwindSafe for Msg
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