#[repr(C)]pub enum SidNameUse {
SidTypeUser = 1,
SidTypeGroup = 2,
SidTypeDomain = 3,
SidTypeAlias = 4,
SidTypeWellKnownGroup = 5,
SidTypeDeletedAccount = 6,
SidTypeInvalid = 7,
SidTypeUnknown = 8,
SidTypeComputer = 9,
SidTypeLabel = 10,
SidTypeLogonSession = 11,
}Expand description
See MSDN.
Variants§
SidTypeUser = 1
SidTypeGroup = 2
SidTypeDomain = 3
SidTypeAlias = 4
SidTypeWellKnownGroup = 5
SidTypeDeletedAccount = 6
SidTypeInvalid = 7
SidTypeUnknown = 8
SidTypeComputer = 9
SidTypeLabel = 10
SidTypeLogonSession = 11
Implementations§
Trait Implementations§
Source§impl Clone for SidNameUse
impl Clone for SidNameUse
Source§fn clone(&self) -> SidNameUse
fn clone(&self) -> SidNameUse
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 SidNameUse
impl Debug for SidNameUse
Source§impl PartialEq for SidNameUse
impl PartialEq for SidNameUse
impl Copy for SidNameUse
impl StructuralPartialEq for SidNameUse
Auto Trait Implementations§
impl Freeze for SidNameUse
impl RefUnwindSafe for SidNameUse
impl Send for SidNameUse
impl Sync for SidNameUse
impl Unpin for SidNameUse
impl UnwindSafe for SidNameUse
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