pub enum EntryRef {
Lookup(EntryName),
Resolved(ResolvedPath),
}Expand description
Entry path passed to callbacks that may run before or after inode resolution.
Lookup is used while resolving a parent/name pair before an inode is attached. Resolved is used when the inode table already has an inode for the entry.
Variants§
Lookup(EntryName)
Resolved(ResolvedPath)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntryRef
impl RefUnwindSafe for EntryRef
impl Send for EntryRef
impl Sync for EntryRef
impl Unpin for EntryRef
impl UnsafeUnpin for EntryRef
impl UnwindSafe for EntryRef
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