pub struct DetailedPluginInfo {
pub info: PluginInfo,
pub factory: FactoryInfo,
pub classes: Vec<ClassInfo>,
pub buses: BusLayout,
pub module_info: Option<ModuleInfo>,
pub compatibility: Vec<ClassCompatibility>,
}Expand description
A deep introspection report for a VST3 plugin — factory, classes, and bus layout.
This is the static metadata a plugin inspector UI needs, beyond the lightweight
PluginInfo. For the parameter list, load the plugin and call
crate::Plugin::get_parameters (which runs the full controller logic).
Fields§
§info: PluginInfoThe basic metadata (also part of this report for convenience).
factory: FactoryInfoFactory / vendor identity.
classes: Vec<ClassInfo>All classes exported by the factory.
buses: BusLayoutFull audio + event bus layout.
module_info: Option<ModuleInfo>Validated static bundle metadata and class-id replacement mappings, when present.
compatibility: Vec<ClassCompatibility>Effective current/retired class-id mappings (moduleinfo, or runtime fallback).
Trait Implementations§
Source§impl Clone for DetailedPluginInfo
impl Clone for DetailedPluginInfo
Source§fn clone(&self) -> DetailedPluginInfo
fn clone(&self) -> DetailedPluginInfo
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 moreSource§impl Debug for DetailedPluginInfo
impl Debug for DetailedPluginInfo
Source§impl<'de> Deserialize<'de> for DetailedPluginInfo
impl<'de> Deserialize<'de> for DetailedPluginInfo
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
Auto Trait Implementations§
impl Freeze for DetailedPluginInfo
impl RefUnwindSafe for DetailedPluginInfo
impl Send for DetailedPluginInfo
impl Sync for DetailedPluginInfo
impl Unpin for DetailedPluginInfo
impl UnsafeUnpin for DetailedPluginInfo
impl UnwindSafe for DetailedPluginInfo
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