pub struct LogicalInoResult {
pub inode: u64,
pub offset: u64,
pub root: u64,
}Expand description
Result from logical-ino resolution: (inode, offset, root)
Fields§
§inode: u64Inode number that contains data at the queried logical address.
offset: u64Byte offset within the file where the logical address maps.
root: u64Subvolume tree ID (root) that owns this inode.
Trait Implementations§
Source§impl Clone for LogicalInoResult
impl Clone for LogicalInoResult
Source§fn clone(&self) -> LogicalInoResult
fn clone(&self) -> LogicalInoResult
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 LogicalInoResult
impl RefUnwindSafe for LogicalInoResult
impl Send for LogicalInoResult
impl Sync for LogicalInoResult
impl Unpin for LogicalInoResult
impl UnsafeUnpin for LogicalInoResult
impl UnwindSafe for LogicalInoResult
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