pub struct ParameterTarget {
pub node_id: NodeId,
pub param_name: String,
pub value: f32,
}Expand description
A single parameter target within a snapshot or step.
Fields§
§node_id: NodeIdGraph node ID.
param_name: StringParameter name on the target node.
value: f32Stored value for this parameter.
Implementations§
Trait Implementations§
Source§impl Clone for ParameterTarget
impl Clone for ParameterTarget
Source§fn clone(&self) -> ParameterTarget
fn clone(&self) -> ParameterTarget
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 ParameterTarget
impl Debug for ParameterTarget
Source§impl PartialEq for ParameterTarget
impl PartialEq for ParameterTarget
impl StructuralPartialEq for ParameterTarget
Auto Trait Implementations§
impl Freeze for ParameterTarget
impl RefUnwindSafe for ParameterTarget
impl Send for ParameterTarget
impl Sync for ParameterTarget
impl Unpin for ParameterTarget
impl UnsafeUnpin for ParameterTarget
impl UnwindSafe for ParameterTarget
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