Skip to main content

PluginInfo

Struct PluginInfo 

Source
pub struct PluginInfo {
    pub name: String,
    pub vendor: String,
    pub version: u32,
    pub category: PluginCategory,
    pub path: PathBuf,
    pub unique_id: String,
    pub format: &'static str,
    pub has_editor: bool,
    pub accepts_midi: bool,
}
Expand description

Scanner-side info about a discovered plugin. This is what hosts hand back from crate::PluginScanner::scan; the caller picks one and hands it back to crate::PluginScanner::load to materialise an instance.

Fields§

§name: String

Display name.

§vendor: String

Vendor / manufacturer name.

§version: u32

Plugin version, packed as host saw it.

§category: PluginCategory

Category for browser UIs.

§path: PathBuf

Filesystem path to the bundle / dylib (where applicable).

§unique_id: String

Format-specific stable id. CLAP uses the plugin id string, VST3 uses the 16-byte CID rendered as hex, AU uses the type/subtype/manufacturer 4ccs packed as "type:subtype:mfr". Hosts pass this back into load.

§format: &'static str

Which format wrapper produced this entry — "clap", "vst3", "au", etc. Lets a multi-format host that aggregates scans tell entries apart in its browser.

§has_editor: bool

Whether the plugin reports a GUI (a custom editor view).

§accepts_midi: bool

Whether the plugin handles MIDI input. Used by hosts that only want to enumerate instruments / note effects.

Trait Implementations§

Source§

impl Clone for PluginInfo

Source§

fn clone(&self) -> PluginInfo

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PluginInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for PluginInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.