pub struct Inode_type(/* private fields */);
Expand description
Inode type
This type is used to identify an inode (file, directory, named pipe, etc.) uniquely in a file system.
It is a wrapper around a u64
.
Implementations§
Trait Implementations§
Source§impl Add<u64> for Inode_type
impl Add<u64> for Inode_type
Source§impl AddAssign<u64> for Inode_type
impl AddAssign<u64> for Inode_type
Source§fn add_assign(&mut self, other: u64)
fn add_assign(&mut self, other: u64)
Performs the
+=
operation. Read moreSource§impl Clone for Inode_type
impl Clone for Inode_type
Source§fn clone(&self) -> Inode_type
fn clone(&self) -> Inode_type
Returns a copy 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 Inode_type
impl Debug for Inode_type
Source§impl From<Inode_type> for u64
impl From<Inode_type> for u64
Source§fn from(item: Inode_type) -> Self
fn from(item: Inode_type) -> Self
Converts to this type from the input type.
Source§impl From<u64> for Inode_type
impl From<u64> for Inode_type
Source§impl Ord for Inode_type
impl Ord for Inode_type
Source§fn cmp(&self, other: &Inode_type) -> Ordering
fn cmp(&self, other: &Inode_type) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Inode_type
impl PartialEq for Inode_type
Source§impl PartialOrd for Inode_type
impl PartialOrd for Inode_type
impl Copy for Inode_type
impl Eq for Inode_type
impl StructuralPartialEq for Inode_type
Auto Trait Implementations§
impl Freeze for Inode_type
impl RefUnwindSafe for Inode_type
impl Send for Inode_type
impl Sync for Inode_type
impl Unpin for Inode_type
impl UnwindSafe for Inode_type
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