pub struct DataKey {
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub include: bool,
pub valid_from: Option<String>,
pub valid_to: Option<String>,
pub key_values: Vec<DataKeyValue>,
pub components: Vec<DataComponentValueSet>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A region which defines a distinct full or partial data key.
Fields§
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§include: bool
§valid_from: Option<String>
§valid_to: Option<String>
§key_values: Vec<DataKeyValue>
§components: Vec<DataComponentValueSet>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DataKey
impl<'de> Deserialize<'de> for DataKey
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
impl Eq for DataKey
impl StructuralPartialEq for DataKey
Auto Trait Implementations§
impl Freeze for DataKey
impl RefUnwindSafe for DataKey
impl Send for DataKey
impl Sync for DataKey
impl Unpin for DataKey
impl UnwindSafe for DataKey
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