pub struct PluginInfo {
pub name: &'static str,
pub vendor: &'static str,
pub url: &'static str,
pub version: &'static str,
pub category: PluginCategory,
pub vst3_id: &'static str,
pub clap_id: &'static str,
pub au_type: [u8; 4],
pub au_subtype: [u8; 4],
pub au_manufacturer: [u8; 4],
pub aax_id: Option<&'static str>,
pub aax_category: Option<&'static str>,
}Expand description
Static metadata about a plugin.
Fields§
§name: &'static str§vendor: &'static str§url: &'static str§version: &'static str§category: PluginCategory§vst3_id: &'static str§clap_id: &'static str§au_type: [u8; 4]§au_subtype: [u8; 4]§au_manufacturer: [u8; 4]§aax_id: Option<&'static str>§aax_category: Option<&'static str>AAX plugin category string (e.g. “EQ”, “Dynamics”, “Reverb”). Maps to AAX_ePlugInCategory constants.
Trait Implementations§
Source§impl Clone for PluginInfo
impl Clone for PluginInfo
Source§fn clone(&self) -> PluginInfo
fn clone(&self) -> PluginInfo
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 moreAuto Trait Implementations§
impl Freeze for PluginInfo
impl RefUnwindSafe for PluginInfo
impl Send for PluginInfo
impl Sync for PluginInfo
impl Unpin for PluginInfo
impl UnsafeUnpin for PluginInfo
impl UnwindSafe for PluginInfo
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