pub enum ModeState {
M_VALID,
M_INVALID,
M_ERROR,
}
Variants§
M_VALID
| everything ok |
M_INVALID
| network rule violation (DoS value may | be set) |
M_ERROR
| run-time error |
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModeState
impl RefUnwindSafe for ModeState
impl Send for ModeState
impl Sync for ModeState
impl Unpin for ModeState
impl UnwindSafe for ModeState
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