pub struct TrainingContractProjection {
pub request_id: String,
pub request_fingerprint: String,
pub plan: ExecutionPlan,
pub outputs: Vec<ResolvedTrainingOutput>,
pub predictor_node_ids: BTreeSet<NodeId>,
pub parameters: ParameterProjection,
}Fields§
§request_id: String§request_fingerprint: String§plan: ExecutionPlan§outputs: Vec<ResolvedTrainingOutput>§predictor_node_ids: BTreeSet<NodeId>§parameters: ParameterProjectionImplementations§
Trait Implementations§
Source§impl Clone for TrainingContractProjection
impl Clone for TrainingContractProjection
Source§fn clone(&self) -> TrainingContractProjection
fn clone(&self) -> TrainingContractProjection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TrainingContractProjection
impl Debug for TrainingContractProjection
Source§impl<'de> Deserialize<'de> for TrainingContractProjection
impl<'de> Deserialize<'de> for TrainingContractProjection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TrainingContractProjection
Auto Trait Implementations§
impl Freeze for TrainingContractProjection
impl RefUnwindSafe for TrainingContractProjection
impl Send for TrainingContractProjection
impl Sync for TrainingContractProjection
impl Unpin for TrainingContractProjection
impl UnsafeUnpin for TrainingContractProjection
impl UnwindSafe for TrainingContractProjection
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