pub enum PluginInstanceName {
Anon {
uid: String,
},
Named {
name: String,
},
Mono,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PluginInstanceName
impl Clone for PluginInstanceName
Source§fn clone(&self) -> PluginInstanceName
fn clone(&self) -> PluginInstanceName
Returns a duplicate 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 PluginInstanceName
impl Debug for PluginInstanceName
Source§impl<'de> Deserialize<'de> for PluginInstanceName
impl<'de> Deserialize<'de> for PluginInstanceName
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 Display for PluginInstanceName
impl Display for PluginInstanceName
Source§impl From<String> for PluginInstanceName
impl From<String> for PluginInstanceName
Source§impl FromStr for PluginInstanceName
impl FromStr for PluginInstanceName
Source§impl Hash for PluginInstanceName
impl Hash for PluginInstanceName
Source§impl PartialEq for PluginInstanceName
impl PartialEq for PluginInstanceName
Source§impl Serialize for PluginInstanceName
impl Serialize for PluginInstanceName
impl Eq for PluginInstanceName
impl StructuralPartialEq for PluginInstanceName
Auto Trait Implementations§
impl Freeze for PluginInstanceName
impl RefUnwindSafe for PluginInstanceName
impl Send for PluginInstanceName
impl Sync for PluginInstanceName
impl Unpin for PluginInstanceName
impl UnwindSafe for PluginInstanceName
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