pub struct MountParams {
pub mount_type: String,
pub description: Option<String>,
pub config: Option<MountTuneParams>,
pub options: Option<HashMap<String, String>>,
}Fields§
§mount_type: String§description: Option<String>§config: Option<MountTuneParams>§options: Option<HashMap<String, String>>Trait Implementations§
Source§impl Clone for MountParams
impl Clone for MountParams
Source§fn clone(&self) -> MountParams
fn clone(&self) -> MountParams
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 MountParams
impl Debug for MountParams
Auto Trait Implementations§
impl Freeze for MountParams
impl RefUnwindSafe for MountParams
impl Send for MountParams
impl Sync for MountParams
impl Unpin for MountParams
impl UnsafeUnpin for MountParams
impl UnwindSafe for MountParams
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