pub enum AttributeValue {
    String(String),
    Array(Vec<AttributeValue>),
    Number(f64),
    Bool(bool),
    Object(HashMap<String, AttributeValue>),
    Null,
}
Expand description

An attribute value represents possible values that can be stored in a crate::Context.

Variants§

§

String(String)

Stores a string value.

§

Array(Vec<AttributeValue>)

Stores an array of attribute values.

§

Number(f64)

Stores a number.

§

Bool(bool)

Stores a boolean.

§

Object(HashMap<String, AttributeValue>)

Stores a map of attribute values.

§

Null

Stores a null value.

Implementations§

source§

impl AttributeValue

source

pub fn as_str(&self) -> Option<&str>

Returns None unless self is a String. It will not convert.

source

pub fn to_f64(&self) -> Option<f64>

Returns the wrapped value as a float for numeric types, and None otherwise.

source

pub fn as_bool(&self) -> Option<bool>

Returns None unless self is a bool. It will not convert.

source

pub fn to_datetime(&self) -> Option<DateTime<Utc>>

Attempt to convert any of the following into a chrono::DateTime in UTC:

  • RFC3339/ISO8601 timestamp (example: “2016-04-16T17:09:12.759-07:00”)
  • Unix epoch milliseconds as number It will return None if the conversion fails or if no conversion is possible.
source

pub fn as_semver(&self) -> Option<Version>

Attempt to parse a string attribute into a semver version.

It will return None if it cannot parse it, or for non-string attributes.

source

pub fn find<P>(&self, p: P) -> Option<&AttributeValue>
where P: Fn(&AttributeValue) -> bool,

Find the AttributeValue based off the provided predicate p.

Trait Implementations§

source§

impl Clone for AttributeValue

source§

fn clone(&self) -> AttributeValue

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AttributeValue

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for AttributeValue

source§

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 From<&Value> for AttributeValue

source§

fn from(v: &Value) -> Self

Converts to this type from the input type.
source§

impl From<&str> for AttributeValue

source§

fn from(s: &str) -> AttributeValue

Converts to this type from the input type.
source§

impl<S, T> From<HashMap<S, T>> for AttributeValue
where String: From<S>, AttributeValue: From<T>,

source§

fn from(hashmap: HashMap<S, T>) -> AttributeValue

Converts to this type from the input type.
source§

impl From<String> for AttributeValue

source§

fn from(s: String) -> AttributeValue

Converts to this type from the input type.
source§

impl<T> From<Vec<T>> for AttributeValue
where AttributeValue: From<T>,

source§

fn from(v: Vec<T>) -> AttributeValue

Converts to this type from the input type.
source§

impl From<bool> for AttributeValue

source§

fn from(b: bool) -> AttributeValue

Converts to this type from the input type.
source§

impl From<f64> for AttributeValue

source§

fn from(f: f64) -> Self

Converts to this type from the input type.
source§

impl From<i64> for AttributeValue

source§

fn from(i: i64) -> Self

Converts to this type from the input type.
source§

impl<S, T> FromIterator<(S, T)> for AttributeValue
where String: From<S>, AttributeValue: From<T>,

source§

fn from_iter<I: IntoIterator<Item = (S, T)>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<T> FromIterator<T> for AttributeValue
where AttributeValue: From<T>,

source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl PartialEq for AttributeValue

source§

fn eq(&self, other: &AttributeValue) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for AttributeValue

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for AttributeValue

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,