Struct fstab::FsEntry [] [src]

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

The device identifier

The mount point

Which filesystem type it is

Mount options to use

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

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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FsEntry
[src]

Formats the value using the given formatter.

impl Eq for FsEntry
[src]

impl PartialEq for FsEntry
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.