pub struct AclStatus {
pub owner: String,
pub group: String,
pub sticky: bool,
pub entries: Vec<AclEntry>,
pub permission: u16,
}
Fields§
§owner: String
§group: String
§sticky: bool
§entries: Vec<AclEntry>
§permission: u16
Auto Trait Implementations§
impl Freeze for AclStatus
impl RefUnwindSafe for AclStatus
impl Send for AclStatus
impl Sync for AclStatus
impl Unpin for AclStatus
impl UnwindSafe for AclStatus
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