[][src]Struct acl_rs::AclEntry

pub struct AclEntry { /* fields omitted */ }

Methods

impl AclEntry[src]

pub fn check_valid(&self) -> Result<(), AclError>[src]

pub fn copy_to(&self, dest: &mut AclEntry) -> Result<(), AclError>[src]

pub fn get_permset(&self) -> Result<AclPermSet, AclError>[src]

pub fn set_permset(&mut self, permset: &AclPermSet) -> Result<(), AclError>[src]

pub fn get_tag_type(&self) -> Result<AclTag, AclError>[src]

pub fn set_tag_type(&mut self, tag_type: &AclTag) -> Result<(), AclError>[src]

pub fn get_qualifier(&self) -> Result<Qualifier, AclError>[src]

pub fn set_qualifier(&mut self, qual: &Qualifier) -> Result<(), AclError>[src]

Trait Implementations

impl Debug for AclEntry[src]

impl Eq for AclEntry[src]

impl PartialEq<AclEntry> for AclEntry[src]

impl StructuralEq for AclEntry[src]

impl StructuralPartialEq for AclEntry[src]

Auto Trait Implementations

impl !RefUnwindSafe for AclEntry

impl !Send for AclEntry

impl !Sync for AclEntry

impl Unpin for AclEntry

impl UnwindSafe for AclEntry

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.