pub struct BoundTrainingOutput {
pub schema_version: Option<u32>,
pub binding: OutputBinding,
pub predictions: Vec<PredictionBlock>,
pub observation_predictions: Vec<ObservationPredictionBlock>,
pub aggregated_predictions: Vec<AggregatedPredictionBlock>,
}Expand description
One resolved output binding and the actual portable blocks it selected.
Fields§
§schema_version: Option<u32>§binding: OutputBinding§predictions: Vec<PredictionBlock>§observation_predictions: Vec<ObservationPredictionBlock>§aggregated_predictions: Vec<AggregatedPredictionBlock>Trait Implementations§
Source§impl Clone for BoundTrainingOutput
impl Clone for BoundTrainingOutput
Source§fn clone(&self) -> BoundTrainingOutput
fn clone(&self) -> BoundTrainingOutput
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 BoundTrainingOutput
impl Debug for BoundTrainingOutput
Source§impl<'de> Deserialize<'de> for BoundTrainingOutput
impl<'de> Deserialize<'de> for BoundTrainingOutput
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
Source§impl PartialEq for BoundTrainingOutput
impl PartialEq for BoundTrainingOutput
Source§impl Serialize for BoundTrainingOutput
impl Serialize for BoundTrainingOutput
impl StructuralPartialEq for BoundTrainingOutput
Auto Trait Implementations§
impl Freeze for BoundTrainingOutput
impl RefUnwindSafe for BoundTrainingOutput
impl Send for BoundTrainingOutput
impl Sync for BoundTrainingOutput
impl Unpin for BoundTrainingOutput
impl UnsafeUnpin for BoundTrainingOutput
impl UnwindSafe for BoundTrainingOutput
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