struct NodeInputParam {
param_id: ParamId,
input_idx: usize,
value: f32,
modamt: Option<(usize, f32)>,
}
Fields
param_id: ParamId
input_idx: usize
value: f32
modamt: Option<(usize, f32)>
Trait Implementations
sourceimpl Clone for NodeInputParam
impl Clone for NodeInputParam
sourcefn clone(&self) -> NodeInputParam
fn clone(&self) -> NodeInputParam
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for NodeInputParam
impl Debug for NodeInputParam
sourceimpl PartialEq<NodeInputParam> for NodeInputParam
impl PartialEq<NodeInputParam> for NodeInputParam
sourcefn eq(&self, other: &NodeInputParam) -> bool
fn eq(&self, other: &NodeInputParam) -> bool
sourceimpl PartialOrd<NodeInputParam> for NodeInputParam
impl PartialOrd<NodeInputParam> for NodeInputParam
sourcefn partial_cmp(&self, other: &NodeInputParam) -> Option<Ordering>
fn partial_cmp(&self, other: &NodeInputParam) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for NodeInputParam
impl StructuralPartialEq for NodeInputParam
Auto Trait Implementations
impl RefUnwindSafe for NodeInputParam
impl Send for NodeInputParam
impl Sync for NodeInputParam
impl Unpin for NodeInputParam
impl UnwindSafe for NodeInputParam
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more