pub struct AttributeRelationship {
pub dataflow: Option<Value>,
pub dimensions: Option<Vec<String>>,
pub observation: Option<Value>,
pub primary_measure: Option<String>,
pub measures: Option<Vec<String>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The relationship between an attribute and other data structure definition components as defined in the data structure definition.
Fields§
§dataflow: Option<Value>
§dimensions: Option<Vec<String>>
§observation: Option<Value>
§primary_measure: Option<String>
§measures: Option<Vec<String>>
§other: Option<HashMap<String, Value>>
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 Default for AttributeRelationship
impl Default for AttributeRelationship
Source§fn default() -> AttributeRelationship
fn default() -> AttributeRelationship
Returns the “default value” for a type. Read more
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 Extendable for AttributeRelationship
impl Extendable for AttributeRelationship
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