pub enum AttributeRelationship {
DataFlow(AttributeRelationshipDataflow),
Dimensions(AttributeRelationshipDimensions),
Groups(AttributeRelationshipGroups),
Observations(AttributeRelationshipObservations),
}
Expand description
The association between an attribute and other data structure definition components.
Variants§
DataFlow(AttributeRelationshipDataflow)
Dimensions(AttributeRelationshipDimensions)
Groups(AttributeRelationshipGroups)
Observations(AttributeRelationshipObservations)
Trait Implementations§
Source§impl Clone for AttributeRelationship
impl Clone for AttributeRelationship
Source§fn clone(&self) -> AttributeRelationship
fn clone(&self) -> AttributeRelationship
Returns a copy of the value. Read more
1.0.0 · 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 AttributeRelationship
impl Debug for AttributeRelationship
Source§impl<'de> Deserialize<'de> for AttributeRelationship
impl<'de> Deserialize<'de> for AttributeRelationship
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 AttributeRelationship
impl PartialEq for AttributeRelationship
Source§impl Serialize for AttributeRelationship
impl Serialize for AttributeRelationship
impl Eq for AttributeRelationship
impl StructuralPartialEq for AttributeRelationship
Auto Trait Implementations§
impl Freeze for AttributeRelationship
impl RefUnwindSafe for AttributeRelationship
impl Send for AttributeRelationship
impl Sync for AttributeRelationship
impl Unpin for AttributeRelationship
impl UnwindSafe for AttributeRelationship
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