pub struct LinuxMount {
pub spec: String,
pub mount_point: String,
pub fs_type: String,
pub mount_options: Vec<String>,
pub dump_fs_freq: u32,
pub fsck_fs_passno: u32,
}Expand description
A mounted filesystem.
See man fstab for a detailed description of the fields.
Fields§
§spec: String§mount_point: String§fs_type: String§mount_options: Vec<String>§dump_fs_freq: u32§fsck_fs_passno: u32Implementations§
Trait Implementations§
Source§impl Clone for LinuxMount
impl Clone for LinuxMount
Source§fn clone(&self) -> LinuxMount
fn clone(&self) -> LinuxMount
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 LinuxMount
impl Debug for LinuxMount
Source§impl Hash for LinuxMount
impl Hash for LinuxMount
Source§impl PartialEq for LinuxMount
impl PartialEq for LinuxMount
impl Eq for LinuxMount
impl StructuralPartialEq for LinuxMount
Auto Trait Implementations§
impl Freeze for LinuxMount
impl RefUnwindSafe for LinuxMount
impl Send for LinuxMount
impl Sync for LinuxMount
impl Unpin for LinuxMount
impl UnwindSafe for LinuxMount
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