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,
}Available on crate feature
v5 only.Expand description
PluginMount plugin mount
Fields§
§description: Stringdescription
destination: Stringdestination
name: Stringname
options: Vec<String>options
settable: Vec<String>settable
source: Stringsource
type: Stringtype
Trait Implementations§
Source§impl Debug for PluginMount
impl Debug for PluginMount
Source§impl Default for PluginMount
impl Default for PluginMount
Source§fn default() -> PluginMount
fn default() -> PluginMount
Returns the “default value” for a type. Read more
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
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