pub struct SecurityDescriptor {
pub owner: Option<Sid>,
pub group: Option<Sid>,
pub dacl: Option<Acl>,
}Fields§
§owner: Option<Sid>§group: Option<Sid>§dacl: Option<Acl>Trait Implementations§
Source§impl Clone for SecurityDescriptor
impl Clone for SecurityDescriptor
Source§fn clone(&self) -> SecurityDescriptor
fn clone(&self) -> SecurityDescriptor
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 moreSource§impl Debug for SecurityDescriptor
impl Debug for SecurityDescriptor
Source§impl Default for SecurityDescriptor
impl Default for SecurityDescriptor
Source§fn default() -> SecurityDescriptor
fn default() -> SecurityDescriptor
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SecurityDescriptor
impl RefUnwindSafe for SecurityDescriptor
impl Send for SecurityDescriptor
impl Sync for SecurityDescriptor
impl Unpin for SecurityDescriptor
impl UnsafeUnpin for SecurityDescriptor
impl UnwindSafe for SecurityDescriptor
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