#[repr(u32)]pub enum MsQuarantineState {
FullAccess,
Quarantine,
Probation,
Unknown(u32),
}Variants§
Trait Implementations§
Source§impl Clone for MsQuarantineState
impl Clone for MsQuarantineState
Source§fn clone(&self) -> MsQuarantineState
fn clone(&self) -> MsQuarantineState
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 MsQuarantineState
impl Debug for MsQuarantineState
Source§impl From<MsQuarantineState> for u32
impl From<MsQuarantineState> for u32
Source§fn from(e: MsQuarantineState) -> Self
fn from(e: MsQuarantineState) -> Self
Converts to this type from the input type.
Source§impl From<u32> for MsQuarantineState
impl From<u32> for MsQuarantineState
Source§impl PartialEq for MsQuarantineState
impl PartialEq for MsQuarantineState
impl Copy for MsQuarantineState
impl Eq for MsQuarantineState
impl StructuralPartialEq for MsQuarantineState
Auto Trait Implementations§
impl Freeze for MsQuarantineState
impl RefUnwindSafe for MsQuarantineState
impl Send for MsQuarantineState
impl Sync for MsQuarantineState
impl Unpin for MsQuarantineState
impl UnwindSafe for MsQuarantineState
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