pub enum PluginSelector {
Id(String),
Name(String),
}Expand description
How the CLI identified the plugin it wants to load. Id is an
exact unique-id match (CLAP plugin id, VST3 CID hex, AU 4cc
triplet). Name is a case-insensitive substring against the
plugin’s display name.
Variants§
Trait Implementations§
Source§impl Clone for PluginSelector
impl Clone for PluginSelector
Source§fn clone(&self) -> PluginSelector
fn clone(&self) -> PluginSelector
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 moreAuto Trait Implementations§
impl Freeze for PluginSelector
impl RefUnwindSafe for PluginSelector
impl Send for PluginSelector
impl Sync for PluginSelector
impl Unpin for PluginSelector
impl UnsafeUnpin for PluginSelector
impl UnwindSafe for PluginSelector
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