#[repr(C)]pub enum SeObjectType {
Show 14 variants
SE_UNKNOWN_OBJECT_TYPE = 0,
SE_FILE_OBJECT = 1,
SE_SERVICE = 2,
SE_PRINTER = 3,
SE_REGISTRY_KEY = 4,
SE_LMSHARE = 5,
SE_KERNEL_OBJECT = 6,
SE_WINDOW_OBJECT = 7,
SE_DS_OBJECT = 8,
SE_DS_OBJECT_ALL = 9,
SE_PROVIDER_DEFINED_OBJECT = 10,
SE_WMIGUID_OBJECT = 11,
SE_REGISTRY_WOW64_32KEY = 12,
SE_REGISTRY_WOW64_64KEY = 13,
}Expand description
See MSDN.
Variants§
SE_UNKNOWN_OBJECT_TYPE = 0
SE_FILE_OBJECT = 1
SE_SERVICE = 2
SE_PRINTER = 3
SE_REGISTRY_KEY = 4
SE_LMSHARE = 5
SE_KERNEL_OBJECT = 6
SE_WINDOW_OBJECT = 7
SE_DS_OBJECT = 8
SE_DS_OBJECT_ALL = 9
SE_PROVIDER_DEFINED_OBJECT = 10
SE_WMIGUID_OBJECT = 11
SE_REGISTRY_WOW64_32KEY = 12
SE_REGISTRY_WOW64_64KEY = 13
Implementations§
Trait Implementations§
Source§impl Clone for SeObjectType
impl Clone for SeObjectType
Source§fn clone(&self) -> SeObjectType
fn clone(&self) -> SeObjectType
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 SeObjectType
impl Debug for SeObjectType
Source§impl PartialEq for SeObjectType
impl PartialEq for SeObjectType
impl Copy for SeObjectType
impl StructuralPartialEq for SeObjectType
Auto Trait Implementations§
impl Freeze for SeObjectType
impl RefUnwindSafe for SeObjectType
impl Send for SeObjectType
impl Sync for SeObjectType
impl Unpin for SeObjectType
impl UnwindSafe for SeObjectType
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