pub struct PluginGraphPlugin {Show 13 fields
pub node: PluginGraphNode,
pub instance_id: usize,
pub format: String,
pub uri: String,
pub plugin_id: String,
pub name: String,
pub main_audio_inputs: usize,
pub main_audio_outputs: usize,
pub audio_inputs: usize,
pub audio_outputs: usize,
pub midi_inputs: usize,
pub midi_outputs: usize,
pub state: Option<Lv2PluginState>,
}Fields§
§node: PluginGraphNode§instance_id: usize§format: String§uri: String§plugin_id: String§name: String§main_audio_inputs: usize§main_audio_outputs: usize§audio_inputs: usize§audio_outputs: usize§midi_inputs: usize§midi_outputs: usize§state: Option<Lv2PluginState>Trait Implementations§
Source§impl Clone for PluginGraphPlugin
impl Clone for PluginGraphPlugin
Source§fn clone(&self) -> PluginGraphPlugin
fn clone(&self) -> PluginGraphPlugin
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 PluginGraphPlugin
impl Debug for PluginGraphPlugin
Source§impl PartialEq for PluginGraphPlugin
impl PartialEq for PluginGraphPlugin
impl StructuralPartialEq for PluginGraphPlugin
Auto Trait Implementations§
impl Freeze for PluginGraphPlugin
impl RefUnwindSafe for PluginGraphPlugin
impl Send for PluginGraphPlugin
impl Sync for PluginGraphPlugin
impl Unpin for PluginGraphPlugin
impl UnsafeUnpin for PluginGraphPlugin
impl UnwindSafe for PluginGraphPlugin
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