#[non_exhaustive]#[repr(u32)]pub enum procfs_ino {
PROCFS_ROOT_INO = 1,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PROCFS_ROOT_INO = 1
Trait Implementations§
Source§impl Clone for procfs_ino
impl Clone for procfs_ino
Source§fn clone(&self) -> procfs_ino
fn clone(&self) -> procfs_ino
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 procfs_ino
impl Debug for procfs_ino
Source§impl Hash for procfs_ino
impl Hash for procfs_ino
Source§impl PartialEq for procfs_ino
impl PartialEq for procfs_ino
impl Copy for procfs_ino
impl Eq for procfs_ino
impl StructuralPartialEq for procfs_ino
Auto Trait Implementations§
impl Freeze for procfs_ino
impl RefUnwindSafe for procfs_ino
impl Send for procfs_ino
impl Sync for procfs_ino
impl Unpin for procfs_ino
impl UnwindSafe for procfs_ino
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