#[repr(C)]pub struct SECURITY_DESCRIPTOR {
pub Revision: u8,
pub Sbz1: u8,
pub Control: u16,
pub Owner: PSID,
pub Group: PSID,
pub Sacl: *mut ACL,
pub Dacl: *mut ACL,
}Fields§
§Revision: u8§Sbz1: u8§Control: u16§Owner: PSID§Group: PSID§Sacl: *mut ACL§Dacl: *mut ACLTrait Implementations§
Source§impl Abi for SECURITY_DESCRIPTOR
impl Abi for SECURITY_DESCRIPTOR
Source§type Abi = SECURITY_DESCRIPTOR
type Abi = SECURITY_DESCRIPTOR
The abi representation of the implementing type. Read more
Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
Source§unsafe fn from_abi(abi: Self::Abi) -> Result<Self, Error>
unsafe fn from_abi(abi: Self::Abi) -> Result<Self, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for SECURITY_DESCRIPTOR
impl Clone for SECURITY_DESCRIPTOR
Source§fn clone(&self) -> SECURITY_DESCRIPTOR
fn clone(&self) -> SECURITY_DESCRIPTOR
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 SECURITY_DESCRIPTOR
impl Debug for SECURITY_DESCRIPTOR
Source§impl Default for SECURITY_DESCRIPTOR
impl Default for SECURITY_DESCRIPTOR
Source§impl PartialEq for SECURITY_DESCRIPTOR
impl PartialEq for SECURITY_DESCRIPTOR
impl Copy for SECURITY_DESCRIPTOR
impl Eq for SECURITY_DESCRIPTOR
Auto Trait Implementations§
impl Freeze for SECURITY_DESCRIPTOR
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