pub struct StackFixedRepresentation {
pub output_unit_level: EntityUnitLevel,
pub cardinality: RepresentationCardinality,
pub expected_cardinality: usize,
pub component_source_ids: Vec<String>,
}Fields§
§output_unit_level: EntityUnitLevel§cardinality: RepresentationCardinality§expected_cardinality: usize§component_source_ids: Vec<String>Implementations§
Source§impl StackFixedRepresentation
impl StackFixedRepresentation
pub fn validate(&self) -> Result<(), DagMlError>
Trait Implementations§
Source§impl Clone for StackFixedRepresentation
impl Clone for StackFixedRepresentation
Source§fn clone(&self) -> StackFixedRepresentation
fn clone(&self) -> StackFixedRepresentation
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 StackFixedRepresentation
impl Debug for StackFixedRepresentation
Source§impl<'de> Deserialize<'de> for StackFixedRepresentation
impl<'de> Deserialize<'de> for StackFixedRepresentation
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<StackFixedRepresentation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StackFixedRepresentation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StackFixedRepresentation
impl PartialEq for StackFixedRepresentation
Source§fn eq(&self, other: &StackFixedRepresentation) -> bool
fn eq(&self, other: &StackFixedRepresentation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StackFixedRepresentation
impl Serialize for StackFixedRepresentation
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 StackFixedRepresentation
Auto Trait Implementations§
impl Freeze for StackFixedRepresentation
impl RefUnwindSafe for StackFixedRepresentation
impl Send for StackFixedRepresentation
impl Sync for StackFixedRepresentation
impl Unpin for StackFixedRepresentation
impl UnsafeUnpin for StackFixedRepresentation
impl UnwindSafe for StackFixedRepresentation
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