pub enum LinuxInvalidation {
Entry {
parent: LinuxInode,
name: String,
},
Inode {
inode: LinuxInode,
},
Delete {
parent: LinuxInode,
child: LinuxInode,
name: String,
},
}Expand description
One native kernel-cache notification produced after an engine transition.
Variants§
Trait Implementations§
Source§impl Clone for LinuxInvalidation
impl Clone for LinuxInvalidation
Source§fn clone(&self) -> LinuxInvalidation
fn clone(&self) -> LinuxInvalidation
Returns a duplicate of the value. Read more
1.0.0 · 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 LinuxInvalidation
impl Debug for LinuxInvalidation
Source§impl PartialEq for LinuxInvalidation
impl PartialEq for LinuxInvalidation
impl Eq for LinuxInvalidation
impl StructuralPartialEq for LinuxInvalidation
Auto Trait Implementations§
impl Freeze for LinuxInvalidation
impl RefUnwindSafe for LinuxInvalidation
impl Send for LinuxInvalidation
impl Sync for LinuxInvalidation
impl Unpin for LinuxInvalidation
impl UnwindSafe for LinuxInvalidation
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