pub enum OCELAttributeValue {
Integer(i64),
Float(f64),
Boolean(bool),
Time(DateTime<FixedOffset>),
String(String),
Null,
}Variants§
Trait Implementations§
Source§impl Clone for OCELAttributeValue
impl Clone for OCELAttributeValue
Source§fn clone(&self) -> OCELAttributeValue
fn clone(&self) -> OCELAttributeValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OCELAttributeValue
impl Debug for OCELAttributeValue
Source§impl Default for OCELAttributeValue
impl Default for OCELAttributeValue
Source§fn default() -> OCELAttributeValue
fn default() -> OCELAttributeValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OCELAttributeValue
impl<'de> Deserialize<'de> for OCELAttributeValue
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 Display for OCELAttributeValue
impl Display for OCELAttributeValue
Source§impl From<AttributeValue> for OCELAttributeValue
impl From<AttributeValue> for OCELAttributeValue
Source§fn from(value: AttributeValue) -> Self
fn from(value: AttributeValue) -> Self
Converts to this type from the input type.
Source§impl From<OCELAttributeValue> for AttributeValue
impl From<OCELAttributeValue> for AttributeValue
Source§fn from(value: OCELAttributeValue) -> AttributeValue
fn from(value: OCELAttributeValue) -> AttributeValue
Converts to this type from the input type.
Source§impl PartialEq for OCELAttributeValue
impl PartialEq for OCELAttributeValue
Source§fn eq(&self, other: &OCELAttributeValue) -> bool
fn eq(&self, other: &OCELAttributeValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OCELAttributeValue
impl Serialize for OCELAttributeValue
impl StructuralPartialEq for OCELAttributeValue
Auto Trait Implementations§
impl Freeze for OCELAttributeValue
impl RefUnwindSafe for OCELAttributeValue
impl Send for OCELAttributeValue
impl Sync for OCELAttributeValue
impl Unpin for OCELAttributeValue
impl UnsafeUnpin for OCELAttributeValue
impl UnwindSafe for OCELAttributeValue
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