pub enum RepresentationPlan {
Aggregate(AggregateRepresentation),
CartesianProduct(CartesianProductRepresentation),
MonteCarloCartesian(MonteCarloCartesianRepresentation),
StackFixed(StackFixedRepresentation),
StackPaddedMasked(StackPaddedMaskedRepresentation),
}Variants§
Aggregate(AggregateRepresentation)
CartesianProduct(CartesianProductRepresentation)
MonteCarloCartesian(MonteCarloCartesianRepresentation)
StackFixed(StackFixedRepresentation)
StackPaddedMasked(StackPaddedMaskedRepresentation)
Implementations§
Source§impl RepresentationPlan
impl RepresentationPlan
pub fn validate(&self) -> Result<(), DagMlError>
pub fn output_unit_level(&self) -> EntityUnitLevel
Trait Implementations§
Source§impl Clone for RepresentationPlan
impl Clone for RepresentationPlan
Source§fn clone(&self) -> RepresentationPlan
fn clone(&self) -> RepresentationPlan
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 RepresentationPlan
impl Debug for RepresentationPlan
Source§impl<'de> Deserialize<'de> for RepresentationPlan
impl<'de> Deserialize<'de> for RepresentationPlan
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepresentationPlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepresentationPlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RepresentationPlan
impl PartialEq for RepresentationPlan
Source§fn eq(&self, other: &RepresentationPlan) -> bool
fn eq(&self, other: &RepresentationPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RepresentationPlan
impl Serialize for RepresentationPlan
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 RepresentationPlan
Auto Trait Implementations§
impl Freeze for RepresentationPlan
impl RefUnwindSafe for RepresentationPlan
impl Send for RepresentationPlan
impl Sync for RepresentationPlan
impl Unpin for RepresentationPlan
impl UnsafeUnpin for RepresentationPlan
impl UnwindSafe for RepresentationPlan
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