pub struct AttributeOperations {
pub get: u32,
pub set: u32,
pub remove: u32,
pub list: u32,
}
Fields§
§get: u32
The number of “get” operations performed on extended file attributes within XFS filesystems. The “get” operation retrieves the value of an extended attribute.
set: u32
The number of “set” operations performed on extended file attributes within XFS filesystems. The “set” operation creates and sets the value of an extended attribute.
remove: u32
The number of “remove” operations performed on extended file attributes within XFS filesystems. The “remove” operation deletes an extended attribute.
list: u32
The number of “list” operations performed on extended file attributes within XFS filesystems. The “list” operation retrieves the set of extended attributes associated with a file.
Auto Trait Implementations§
impl Freeze for AttributeOperations
impl RefUnwindSafe for AttributeOperations
impl Send for AttributeOperations
impl Sync for AttributeOperations
impl Unpin for AttributeOperations
impl UnwindSafe for AttributeOperations
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