pub struct PluginMount {
pub description: String,
pub destination: String,
pub name: String,
pub options: Vec<String>,
pub settable: Vec<String>,
pub source: String,
pub type_: String,
}
Fields§
§description: String
§destination: String
§name: String
§options: Vec<String>
§settable: Vec<String>
§source: String
§type_: String
Trait Implementations§
Source§impl Clone for PluginMount
impl Clone for PluginMount
Source§fn clone(&self) -> PluginMount
fn clone(&self) -> PluginMount
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PluginMount
impl Debug for PluginMount
Source§impl<'de> Deserialize<'de> for PluginMount
impl<'de> Deserialize<'de> for PluginMount
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PluginMount
impl PartialEq for PluginMount
Source§impl Serialize for PluginMount
impl Serialize for PluginMount
impl StructuralPartialEq for PluginMount
Auto Trait Implementations§
impl Freeze for PluginMount
impl RefUnwindSafe for PluginMount
impl Send for PluginMount
impl Sync for PluginMount
impl Unpin for PluginMount
impl UnwindSafe for PluginMount
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