Enum devrc_plugins::options::PluginOption
source · pub enum PluginOption {
None,
String(String),
List(Vec<PluginOption>),
Map(IndexMap<String, PluginOption>),
}
Variants§
Trait Implementations§
source§impl Clone for PluginOption
impl Clone for PluginOption
source§fn clone(&self) -> PluginOption
fn clone(&self) -> PluginOption
Returns a copy 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 PluginOption
impl Debug for PluginOption
source§impl Default for PluginOption
impl Default for PluginOption
source§fn default() -> PluginOption
fn default() -> PluginOption
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for PluginOption
impl Send for PluginOption
impl Sync for PluginOption
impl Unpin for PluginOption
impl UnwindSafe for PluginOption
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