pub struct Lv2PluginInfo {
pub uri: String,
pub name: String,
pub class_label: String,
pub bundle_uri: String,
pub required_features: Vec<String>,
pub audio_inputs: usize,
pub audio_outputs: usize,
pub midi_inputs: usize,
pub midi_outputs: usize,
}Fields§
§uri: String§name: String§class_label: String§bundle_uri: String§required_features: Vec<String>§audio_inputs: usize§audio_outputs: usize§midi_inputs: usize§midi_outputs: usizeTrait Implementations§
Source§impl Clone for Lv2PluginInfo
impl Clone for Lv2PluginInfo
Source§fn clone(&self) -> Lv2PluginInfo
fn clone(&self) -> Lv2PluginInfo
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 Lv2PluginInfo
impl Debug for Lv2PluginInfo
Source§impl<'de> Deserialize<'de> for Lv2PluginInfo
impl<'de> Deserialize<'de> for Lv2PluginInfo
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
impl Eq for Lv2PluginInfo
Source§impl PartialEq for Lv2PluginInfo
impl PartialEq for Lv2PluginInfo
Source§fn eq(&self, other: &Lv2PluginInfo) -> bool
fn eq(&self, other: &Lv2PluginInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Lv2PluginInfo
impl Serialize for Lv2PluginInfo
impl StructuralPartialEq for Lv2PluginInfo
Auto Trait Implementations§
impl Freeze for Lv2PluginInfo
impl RefUnwindSafe for Lv2PluginInfo
impl Send for Lv2PluginInfo
impl Sync for Lv2PluginInfo
impl Unpin for Lv2PluginInfo
impl UnsafeUnpin for Lv2PluginInfo
impl UnwindSafe for Lv2PluginInfo
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