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<(), Error>

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

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

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<AttributeValue, <__D as Deserializer<'de>>::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) -> AttributeValue

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) -> AttributeValue

Converts to this type from the input type.
source§

impl From<i64> for AttributeValue

source§

fn from(i: i64) -> AttributeValue

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>(iter: I) -> AttributeValue
where I: IntoIterator<Item = (S, T)>,

Creates a value from an iterator. Read more
source§

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

source§

fn from_iter<I>(iter: I) -> AttributeValue
where I: IntoIterator<Item = T>,

Creates a value from an iterator. Read more
source§

impl PartialEq for AttributeValue

source§

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

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

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

This method 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 as Serializer>::Ok, <__S as Serializer>::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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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