pub struct AggregationControllerResult {
pub schema_version: u32,
pub task_id: String,
pub reduction_plan: Option<ReductionPlan>,
pub output: AggregationControllerOutput,
}Fields§
§schema_version: u32§task_id: String§reduction_plan: Option<ReductionPlan>§output: AggregationControllerOutputImplementations§
Source§impl AggregationControllerResult
impl AggregationControllerResult
pub fn validate_for_task( &self, task: &AggregationControllerTask, ) -> Result<(), DagMlError>
Trait Implementations§
Source§impl Clone for AggregationControllerResult
impl Clone for AggregationControllerResult
Source§fn clone(&self) -> AggregationControllerResult
fn clone(&self) -> AggregationControllerResult
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 AggregationControllerResult
impl Debug for AggregationControllerResult
Source§impl<'de> Deserialize<'de> for AggregationControllerResult
impl<'de> Deserialize<'de> for AggregationControllerResult
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AggregationControllerResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AggregationControllerResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AggregationControllerResult
impl PartialEq for AggregationControllerResult
Source§fn eq(&self, other: &AggregationControllerResult) -> bool
fn eq(&self, other: &AggregationControllerResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AggregationControllerResult
impl Serialize for AggregationControllerResult
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 AggregationControllerResult
Auto Trait Implementations§
impl Freeze for AggregationControllerResult
impl RefUnwindSafe for AggregationControllerResult
impl Send for AggregationControllerResult
impl Sync for AggregationControllerResult
impl Unpin for AggregationControllerResult
impl UnsafeUnpin for AggregationControllerResult
impl UnwindSafe for AggregationControllerResult
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