pub struct EarlyMount {
pub source: &'static str,
pub target: &'static str,
pub fstype: &'static str,
pub flags: u64,
pub data: &'static str,
}Expand description
One declarative mount description.
Fields§
§source: &'static str§target: &'static str§fstype: &'static str§flags: u64§data: &'static strTrait Implementations§
Source§impl Clone for EarlyMount
impl Clone for EarlyMount
Source§fn clone(&self) -> EarlyMount
fn clone(&self) -> EarlyMount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EarlyMount
impl RefUnwindSafe for EarlyMount
impl Send for EarlyMount
impl Sync for EarlyMount
impl Unpin for EarlyMount
impl UnsafeUnpin for EarlyMount
impl UnwindSafe for EarlyMount
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