#[non_exhaustive]#[repr(i32)]pub enum _DOMAIN_INFORMATION_CLASS {
Show 13 variants
DomainPasswordInformation = 1,
DomainGeneralInformation = 2,
DomainLogoffInformation = 3,
DomainOemInformation = 4,
DomainNameInformation = 5,
DomainReplicationInformation = 6,
DomainServerRoleInformation = 7,
DomainModifiedInformation = 8,
DomainStateInformation = 9,
DomainUasInformation = 10,
DomainGeneralInformation2 = 11,
DomainLockoutInformation = 12,
DomainModifiedInformation2 = 13,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DomainPasswordInformation = 1
DomainGeneralInformation = 2
DomainLogoffInformation = 3
DomainOemInformation = 4
DomainNameInformation = 5
DomainReplicationInformation = 6
DomainServerRoleInformation = 7
DomainModifiedInformation = 8
DomainStateInformation = 9
DomainUasInformation = 10
DomainGeneralInformation2 = 11
DomainLockoutInformation = 12
DomainModifiedInformation2 = 13
Trait Implementations§
Source§impl Clone for _DOMAIN_INFORMATION_CLASS
impl Clone for _DOMAIN_INFORMATION_CLASS
Source§fn clone(&self) -> _DOMAIN_INFORMATION_CLASS
fn clone(&self) -> _DOMAIN_INFORMATION_CLASS
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 _DOMAIN_INFORMATION_CLASS
impl Debug for _DOMAIN_INFORMATION_CLASS
Source§impl Hash for _DOMAIN_INFORMATION_CLASS
impl Hash for _DOMAIN_INFORMATION_CLASS
impl Copy for _DOMAIN_INFORMATION_CLASS
impl Eq for _DOMAIN_INFORMATION_CLASS
impl StructuralPartialEq for _DOMAIN_INFORMATION_CLASS
Auto Trait Implementations§
impl Freeze for _DOMAIN_INFORMATION_CLASS
impl RefUnwindSafe for _DOMAIN_INFORMATION_CLASS
impl Send for _DOMAIN_INFORMATION_CLASS
impl Sync for _DOMAIN_INFORMATION_CLASS
impl Unpin for _DOMAIN_INFORMATION_CLASS
impl UnwindSafe for _DOMAIN_INFORMATION_CLASS
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