pub struct AccessControlEntry {
pub tag: AceTag,
pub perms: AcePermSet,
pub flags: AceFlagSet,
pub qualifier_type: AceQualifierType,
pub qualifier: Vec<u8>,
}Expand description
Wraps an ACL entry used by AAEntryACLBlob.
Fields§
§tag: AceTagWraps the tag field of AccessControlEntry.
perms: AcePermSetWraps the perms field of AccessControlEntry.
flags: AceFlagSetWraps the flags field of AccessControlEntry.
qualifier_type: AceQualifierTypeWraps the qualifier_type field of AccessControlEntry.
qualifier: Vec<u8>Wraps the qualifier field of AccessControlEntry.
Trait Implementations§
Source§impl Clone for AccessControlEntry
impl Clone for AccessControlEntry
Source§fn clone(&self) -> AccessControlEntry
fn clone(&self) -> AccessControlEntry
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 AccessControlEntry
impl Debug for AccessControlEntry
Source§impl PartialEq for AccessControlEntry
impl PartialEq for AccessControlEntry
Source§fn eq(&self, other: &AccessControlEntry) -> bool
fn eq(&self, other: &AccessControlEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AccessControlEntry
impl StructuralPartialEq for AccessControlEntry
Auto Trait Implementations§
impl Freeze for AccessControlEntry
impl RefUnwindSafe for AccessControlEntry
impl Send for AccessControlEntry
impl Sync for AccessControlEntry
impl Unpin for AccessControlEntry
impl UnsafeUnpin for AccessControlEntry
impl UnwindSafe for AccessControlEntry
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