Struct dokany_sys::SECURITY_DESCRIPTOR
#[repr(C)]pub struct SECURITY_DESCRIPTOR {
pub Revision: u8,
pub Sbz1: u8,
pub Control: u16,
pub Owner: *mut c_void,
pub Group: *mut c_void,
pub Sacl: *mut ACL,
pub Dacl: *mut ACL,
}
Expand description
Required features: "Win32_Security"
, "Win32_Foundation"
Fields§
§Revision: u8
§Sbz1: u8
§Control: u16
§Owner: *mut c_void
§Group: *mut c_void
§Sacl: *mut ACL
§Dacl: *mut ACL
Trait Implementations§
§impl Clone for SECURITY_DESCRIPTOR
impl Clone for SECURITY_DESCRIPTOR
§fn clone(&self) -> SECURITY_DESCRIPTOR
fn clone(&self) -> SECURITY_DESCRIPTOR
Returns a copy 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 moreimpl Copy for SECURITY_DESCRIPTOR
Auto Trait Implementations§
impl RefUnwindSafe for SECURITY_DESCRIPTOR
impl !Send for SECURITY_DESCRIPTOR
impl !Sync for SECURITY_DESCRIPTOR
impl Unpin for SECURITY_DESCRIPTOR
impl UnwindSafe for SECURITY_DESCRIPTOR
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