[][src]Struct fstab::FsEntry

pub struct FsEntry {
    pub fs_spec: String,
    pub mountpoint: PathBuf,
    pub vfs_type: String,
    pub mount_options: Vec<String>,
    pub dump: bool,
    pub fsck_order: u16,
}

For help with what these fields mean consult: man fstab on linux.

Fields

fs_spec: String

The device identifier

mountpoint: PathBuf

The mount point

vfs_type: String

Which filesystem type it is

mount_options: Vec<String>

Mount options to use

dump: bool

This field is used by dump(8) to determine which filesystems need to be dumped

fsck_order: u16

This field is used by fsck(8) to determine the order in which filesystem checks are done at boot time.

Trait Implementations

impl Clone for FsEntry[src]

impl Debug for FsEntry[src]

impl Eq for FsEntry[src]

impl PartialEq<FsEntry> for FsEntry[src]

impl StructuralEq for FsEntry[src]

impl StructuralPartialEq for FsEntry[src]

Auto Trait Implementations

impl RefUnwindSafe for FsEntry

impl Send for FsEntry

impl Sync for FsEntry

impl Unpin for FsEntry

impl UnwindSafe for FsEntry

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.