pub enum AggregationControllerInput {
ObservationToSample {
block: ObservationPredictionBlock,
relations: SampleRelationSet,
requested_sample_order: Vec<SampleId>,
},
SampleToUnit {
block: PredictionBlock,
relations: SampleRelationSet,
requested_unit_order: Vec<PredictionUnitId>,
},
}Variants§
ObservationToSample
SampleToUnit
Fields
§
block: PredictionBlock§
relations: SampleRelationSet§
requested_unit_order: Vec<PredictionUnitId>Trait Implementations§
Source§impl Clone for AggregationControllerInput
impl Clone for AggregationControllerInput
Source§fn clone(&self) -> AggregationControllerInput
fn clone(&self) -> AggregationControllerInput
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 AggregationControllerInput
impl Debug for AggregationControllerInput
Source§impl<'de> Deserialize<'de> for AggregationControllerInput
impl<'de> Deserialize<'de> for AggregationControllerInput
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AggregationControllerInput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AggregationControllerInput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AggregationControllerInput
impl PartialEq for AggregationControllerInput
Source§fn eq(&self, other: &AggregationControllerInput) -> bool
fn eq(&self, other: &AggregationControllerInput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AggregationControllerInput
impl Serialize for AggregationControllerInput
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 AggregationControllerInput
Auto Trait Implementations§
impl Freeze for AggregationControllerInput
impl RefUnwindSafe for AggregationControllerInput
impl Send for AggregationControllerInput
impl Sync for AggregationControllerInput
impl Unpin for AggregationControllerInput
impl UnsafeUnpin for AggregationControllerInput
impl UnwindSafe for AggregationControllerInput
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