pub enum MSG {
Remember(Memory),
Forget(ForgetMemory),
Message(Message),
Log {
flow: String,
line: u32,
message: String,
log_lvl: LogLvl,
},
Hold(Hold),
Next {
flow: Option<String>,
step: Option<String>,
},
Error(Message),
}
Variants
Remember(Memory)
Forget(ForgetMemory)
Message(Message)
Log
Hold(Hold)
Next
Error(Message)
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for MSG
impl Send for MSG
impl Sync for MSG
impl Unpin for MSG
impl UnwindSafe for MSG
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more