Struct windows_sys::Win32::Security::Authentication::Identity::LSA_OBJECT_ATTRIBUTES
#[repr(C)]pub struct LSA_OBJECT_ATTRIBUTES {
pub Length: u32,
pub RootDirectory: HANDLE,
pub ObjectName: *mut LSA_UNICODE_STRING,
pub Attributes: u32,
pub SecurityDescriptor: *mut c_void,
pub SecurityQualityOfService: *mut c_void,
}
Expand description
Required features: "Win32_Foundation"
Fields§
§Length: u32
§RootDirectory: HANDLE
§ObjectName: *mut LSA_UNICODE_STRING
§Attributes: u32
§SecurityDescriptor: *mut c_void
§SecurityQualityOfService: *mut c_void
Trait Implementations§
§impl Clone for LSA_OBJECT_ATTRIBUTES
impl Clone for LSA_OBJECT_ATTRIBUTES
impl Copy for LSA_OBJECT_ATTRIBUTES
Auto Trait Implementations§
impl RefUnwindSafe for LSA_OBJECT_ATTRIBUTES
impl !Send for LSA_OBJECT_ATTRIBUTES
impl !Sync for LSA_OBJECT_ATTRIBUTES
impl Unpin for LSA_OBJECT_ATTRIBUTES
impl UnwindSafe for LSA_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