pub struct Vst3PluginInfo {
pub id: String,
pub name: String,
pub vendor: String,
pub path: String,
pub category: String,
pub version: String,
pub audio_inputs: usize,
pub audio_outputs: usize,
pub has_midi_input: bool,
pub has_midi_output: bool,
}Fields§
§id: String§name: String§vendor: String§path: String§category: String§version: String§audio_inputs: usize§audio_outputs: usize§has_midi_input: bool§has_midi_output: boolTrait Implementations§
Source§impl Clone for Vst3PluginInfo
impl Clone for Vst3PluginInfo
Source§fn clone(&self) -> Vst3PluginInfo
fn clone(&self) -> Vst3PluginInfo
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 Vst3PluginInfo
impl Debug for Vst3PluginInfo
Source§impl<'de> Deserialize<'de> for Vst3PluginInfo
impl<'de> Deserialize<'de> for Vst3PluginInfo
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 PartialEq for Vst3PluginInfo
impl PartialEq for Vst3PluginInfo
Source§impl Serialize for Vst3PluginInfo
impl Serialize for Vst3PluginInfo
impl Eq for Vst3PluginInfo
impl StructuralPartialEq for Vst3PluginInfo
Auto Trait Implementations§
impl Freeze for Vst3PluginInfo
impl RefUnwindSafe for Vst3PluginInfo
impl Send for Vst3PluginInfo
impl Sync for Vst3PluginInfo
impl Unpin for Vst3PluginInfo
impl UnsafeUnpin for Vst3PluginInfo
impl UnwindSafe for Vst3PluginInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more