pub struct MsgMark {
pub path: PathBuf,
pub flags: Flags,
pub is_new: bool,
pub tagged: bool,
pub dirty: bool,
}Expand description
One message’s state before a step touched it. The path is the identity: it only changes when the mailbox is written, and a write drops the whole stack.
Fields§
§path: PathBuf§flags: Flags§is_new: bool§tagged: bool§dirty: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for MsgMark
impl RefUnwindSafe for MsgMark
impl Send for MsgMark
impl Sync for MsgMark
impl Unpin for MsgMark
impl UnsafeUnpin for MsgMark
impl UnwindSafe for MsgMark
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