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 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 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 Freeze for PluginOption
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