pub struct Target {
pub node_id: NodeId,
pub param_name: String,
pub min: f32,
pub max: f32,
}Expand description
The destination of an event mapping: a specific parameter on a specific graph node.
Fields§
§node_id: NodeIdGraph node that owns the target parameter.
param_name: StringName of the parameter to control.
min: f32Lower bound of the parameter value range.
max: f32Upper bound of the parameter value range.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Target
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnsafeUnpin for Target
impl UnwindSafe for Target
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