pub struct MsgInfo {
pub cmd: u32,
pub metalen: u32,
pub payloadlen: u64,
}Expand description
Message information buffer passed to storate request callback closures.
Fields§
§cmd: u32Message command number.
metalen: u32Length of message metadata.
payloadlen: u64Length of message payload.
Auto Trait Implementations§
impl Freeze for MsgInfo
impl RefUnwindSafe for MsgInfo
impl Send for MsgInfo
impl Sync for MsgInfo
impl Unpin for MsgInfo
impl UnwindSafe for MsgInfo
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