pub struct ParamComputeConfig {
pub source_refs: Vec<ParamRef>,
pub target_refs: Vec<ParamRef>,
}Expand description
Configuration for ParamCompute action
Fields§
§source_refs: Vec<ParamRef>Parameters to read from other nodes (sources)
target_refs: Vec<ParamRef>Parameters to write to other nodes (targets)
Trait Implementations§
Source§impl Clone for ParamComputeConfig
impl Clone for ParamComputeConfig
Source§fn clone(&self) -> ParamComputeConfig
fn clone(&self) -> ParamComputeConfig
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 ParamComputeConfig
impl RefUnwindSafe for ParamComputeConfig
impl Send for ParamComputeConfig
impl Sync for ParamComputeConfig
impl Unpin for ParamComputeConfig
impl UnwindSafe for ParamComputeConfig
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