#[repr(C)]pub struct OBJECT_ATTRIBUTES {
pub Length: u32,
pub RootDirectory: *mut c_void,
pub ObjectName: *mut UNICODE_STRING,
pub Attributes: u32,
pub SecurityDescriptor: *mut c_void,
pub SecurityQualityOfService: *mut c_void,
}Fields§
§Length: u32§RootDirectory: *mut c_void§ObjectName: *mut UNICODE_STRING§Attributes: u32§SecurityDescriptor: *mut c_void§SecurityQualityOfService: *mut c_voidTrait Implementations§
Source§impl Clone for OBJECT_ATTRIBUTES
impl Clone for OBJECT_ATTRIBUTES
Source§fn clone(&self) -> OBJECT_ATTRIBUTES
fn clone(&self) -> OBJECT_ATTRIBUTES
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OBJECT_ATTRIBUTES
Source§impl Default for OBJECT_ATTRIBUTES
impl Default for OBJECT_ATTRIBUTES
Source§fn default() -> OBJECT_ATTRIBUTES
fn default() -> OBJECT_ATTRIBUTES
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Send for OBJECT_ATTRIBUTES
impl !Sync for OBJECT_ATTRIBUTES
impl Freeze for OBJECT_ATTRIBUTES
impl RefUnwindSafe for OBJECT_ATTRIBUTES
impl Unpin for OBJECT_ATTRIBUTES
impl UnsafeUnpin for OBJECT_ATTRIBUTES
impl UnwindSafe for OBJECT_ATTRIBUTES
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