pub struct SentinelValue {
pub value: Option<NumberOrString>,
pub name: Option<String>,
pub names: Option<LocalizedText>,
pub description: Option<String>,
pub descriptions: Option<LocalizedText>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A reserved value within an associated data domain and some semantic meaning.
Fields§
§value: Option<NumberOrString>
§name: Option<String>
§names: Option<LocalizedText>
§description: Option<String>
§descriptions: Option<LocalizedText>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for SentinelValue
impl Clone for SentinelValue
Source§fn clone(&self) -> SentinelValue
fn clone(&self) -> SentinelValue
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 SentinelValue
impl Debug for SentinelValue
Source§impl Default for SentinelValue
impl Default for SentinelValue
Source§fn default() -> SentinelValue
fn default() -> SentinelValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SentinelValue
impl<'de> Deserialize<'de> for SentinelValue
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 SentinelValue
impl PartialEq for SentinelValue
Source§impl Serialize for SentinelValue
impl Serialize for SentinelValue
impl Eq for SentinelValue
impl StructuralPartialEq for SentinelValue
Auto Trait Implementations§
impl Freeze for SentinelValue
impl RefUnwindSafe for SentinelValue
impl Send for SentinelValue
impl Sync for SentinelValue
impl Unpin for SentinelValue
impl UnwindSafe for SentinelValue
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