pub struct NodePlan {Show 16 fields
pub node_id: NodeId,
pub kind: NodeKind,
pub controller_id: ControllerId,
pub controller_version: String,
pub supported_phases: BTreeSet<Phase>,
pub controller_capabilities: BTreeSet<ControllerCapability>,
pub fit_scope: ControllerFitScope,
pub rng_policy: RngPolicy,
pub artifact_policy: ArtifactPolicy,
pub input_nodes: Vec<NodeId>,
pub output_nodes: Vec<NodeId>,
pub shape_plan: Option<DataModelShapePlan>,
pub data_bindings: Vec<DataBinding>,
pub params: BTreeMap<String, Value>,
pub inner_cv: Option<NestedCvSpec>,
pub params_fingerprint: String,
}Fields§
§node_id: NodeId§kind: NodeKind§controller_id: ControllerId§controller_version: String§supported_phases: BTreeSet<Phase>§controller_capabilities: BTreeSet<ControllerCapability>§fit_scope: ControllerFitScope§rng_policy: RngPolicy§artifact_policy: ArtifactPolicy§input_nodes: Vec<NodeId>§output_nodes: Vec<NodeId>§shape_plan: Option<DataModelShapePlan>§data_bindings: Vec<DataBinding>§params: BTreeMap<String, Value>§inner_cv: Option<NestedCvSpec>Node-local nested (inner) CV policy (e.g. for a finetune/tuner or branch node); overrides the campaign-wide default.
params_fingerprint: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for NodePlan
impl<'de> Deserialize<'de> for NodePlan
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodePlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodePlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for NodePlan
Source§impl Serialize for NodePlan
impl Serialize for NodePlan
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for NodePlan
Auto Trait Implementations§
impl Freeze for NodePlan
impl RefUnwindSafe for NodePlan
impl Send for NodePlan
impl Sync for NodePlan
impl Unpin for NodePlan
impl UnsafeUnpin for NodePlan
impl UnwindSafe for NodePlan
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.