pub enum ModeStatus {
NotSupported = 0,
Enabled = 1,
Disabled = 2,
PermanentlyEnabled = 3,
PermanentlyDisabled = 4,
}
Expand description
The current batch processing mode.
Variants§
Trait Implementations§
Source§impl Clone for ModeStatus
impl Clone for ModeStatus
Source§fn clone(&self) -> ModeStatus
fn clone(&self) -> ModeStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ModeStatus
impl Debug for ModeStatus
Source§impl PartialEq for ModeStatus
impl PartialEq for ModeStatus
impl Copy for ModeStatus
impl Eq for ModeStatus
impl StructuralPartialEq for ModeStatus
Auto Trait Implementations§
impl Freeze for ModeStatus
impl RefUnwindSafe for ModeStatus
impl Send for ModeStatus
impl Sync for ModeStatus
impl Unpin for ModeStatus
impl UnwindSafe for ModeStatus
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