pub struct InoLookupUserResult {
pub name: String,
pub path: String,
}Expand description
Result of an unprivileged inode lookup (BTRFS_IOC_INO_LOOKUP_USER).
Contains the subvolume name and the path from the fd’s subvolume root to the directory containing the subvolume.
Fields§
§name: StringName of the subvolume.
path: StringPath from the fd’s subvolume root to the directory containing the
subvolume entry (dirid). Empty if the subvolume sits directly
under the subvolume root.
Trait Implementations§
Source§impl Clone for InoLookupUserResult
impl Clone for InoLookupUserResult
Source§fn clone(&self) -> InoLookupUserResult
fn clone(&self) -> InoLookupUserResult
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 moreAuto Trait Implementations§
impl Freeze for InoLookupUserResult
impl RefUnwindSafe for InoLookupUserResult
impl Send for InoLookupUserResult
impl Sync for InoLookupUserResult
impl Unpin for InoLookupUserResult
impl UnsafeUnpin for InoLookupUserResult
impl UnwindSafe for InoLookupUserResult
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