pub struct ControlOutput {
pub port_name: String,
pub value: ParamValue,
}Expand description
§========================================================================== Control Output (for ParamCompute nodes)
Control output value from ParamCompute
Used by execute-param-compute to output control signals through ports. The actual target is determined by graph connections, not hardcoded.
Fields§
§port_name: StringOutput port name (must match a port in manifest)
value: ParamValueOutput value
Trait Implementations§
Source§impl Clone for ControlOutput
impl Clone for ControlOutput
Source§fn clone(&self) -> ControlOutput
fn clone(&self) -> ControlOutput
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 moreAuto Trait Implementations§
impl Freeze for ControlOutput
impl RefUnwindSafe for ControlOutput
impl Send for ControlOutput
impl Sync for ControlOutput
impl Unpin for ControlOutput
impl UnwindSafe for ControlOutput
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