pub struct PluginMountList {
pub plugins: Option<Vec<PluginMount>>,
}Fields§
§plugins: Option<Vec<PluginMount>>Plugins is every subsystem the composition root declared, filtered to the enabled ones unless all=true.
Implementations§
Source§impl PluginMountList
impl PluginMountList
pub fn new() -> PluginMountList
Trait Implementations§
Source§impl Clone for PluginMountList
impl Clone for PluginMountList
Source§fn clone(&self) -> PluginMountList
fn clone(&self) -> PluginMountList
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 moreSource§impl Debug for PluginMountList
impl Debug for PluginMountList
Source§impl Default for PluginMountList
impl Default for PluginMountList
Source§fn default() -> PluginMountList
fn default() -> PluginMountList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PluginMountList
impl<'de> Deserialize<'de> for PluginMountList
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 PluginMountList
impl PartialEq for PluginMountList
Source§impl Serialize for PluginMountList
impl Serialize for PluginMountList
impl StructuralPartialEq for PluginMountList
Auto Trait Implementations§
impl Freeze for PluginMountList
impl RefUnwindSafe for PluginMountList
impl Send for PluginMountList
impl Sync for PluginMountList
impl Unpin for PluginMountList
impl UnsafeUnpin for PluginMountList
impl UnwindSafe for PluginMountList
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