pub struct DataConsumerScheme {
pub artefact: CommonArtefactType,
pub is_partial: Option<bool>,
pub data_consumers: Option<Vec<Item>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The item scheme for a data consumer.
Fields§
§artefact: CommonArtefactType
§is_partial: Option<bool>
§data_consumers: Option<Vec<Item>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Artefact for DataConsumerScheme
impl Artefact for DataConsumerScheme
fn artefact(&self) -> &CommonArtefactType
fn id(&self) -> &String
fn agency_id(&self) -> Option<&String>
fn version(&self) -> Option<&String>
fn name(&self) -> Option<&String>
fn names(&self) -> Option<&LocalizedText>
fn valid_from(&self) -> Option<&String>
fn valid_to(&self) -> Option<&String>
fn is_external_reference(&self) -> Option<bool>
fn annotations(&self) -> Option<&Vec<Annotation>>
fn links(&self) -> Option<&Vec<Link>>
Source§impl Clone for DataConsumerScheme
impl Clone for DataConsumerScheme
Source§fn clone(&self) -> DataConsumerScheme
fn clone(&self) -> DataConsumerScheme
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 DataConsumerScheme
impl Debug for DataConsumerScheme
Source§impl<'de> Deserialize<'de> for DataConsumerScheme
impl<'de> Deserialize<'de> for DataConsumerScheme
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 DataConsumerScheme
impl Extendable for DataConsumerScheme
Source§impl ItemScheme for DataConsumerScheme
impl ItemScheme for DataConsumerScheme
Source§impl PartialEq for DataConsumerScheme
impl PartialEq for DataConsumerScheme
Source§impl Serialize for DataConsumerScheme
impl Serialize for DataConsumerScheme
impl Eq for DataConsumerScheme
impl StructuralPartialEq for DataConsumerScheme
Auto Trait Implementations§
impl Freeze for DataConsumerScheme
impl RefUnwindSafe for DataConsumerScheme
impl Send for DataConsumerScheme
impl Sync for DataConsumerScheme
impl Unpin for DataConsumerScheme
impl UnwindSafe for DataConsumerScheme
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