pub struct ParsedMsgHdr {
pub id: MsgId,
pub reply_right: Option<AnySendRight>,
pub voucher: Option<SendRight>,
}Expand description
Represents a parsed message header.
Fields§
§id: MsgIdThe message ID value from the message header.
reply_right: Option<AnySendRight>The reply port right passed with the message if any.
voucher: Option<SendRight>The voucher port right passed with the message if any.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParsedMsgHdr
impl RefUnwindSafe for ParsedMsgHdr
impl Send for ParsedMsgHdr
impl Sync for ParsedMsgHdr
impl Unpin for ParsedMsgHdr
impl UnwindSafe for ParsedMsgHdr
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