[][src]Enum cloudevents::event::ExtensionValue

pub enum ExtensionValue {
    String(String),
    Boolean(bool),
    Integer(i64),
    Json(Value),
}

Represents all the possible CloudEvents extension values

Variants

String(String)

Represents a String value.

Boolean(bool)

Represents a bool value.

Integer(i64)

Represents an integer i64 value.

Json(Value)

Represents a Json Value.

Methods

impl ExtensionValue[src]

pub fn from_string<S>(s: S) -> Self where
    S: Into<String>, 
[src]

pub fn from_i64<S>(s: S) -> Self where
    S: Into<i64>, 
[src]

pub fn from_bool<S>(s: S) -> Self where
    S: Into<bool>, 
[src]

pub fn from_json_value<S>(s: S) -> Self where
    S: Into<Value>, 
[src]

Trait Implementations

impl Clone for ExtensionValue[src]

impl Debug for ExtensionValue[src]

impl<'de> Deserialize<'de> for ExtensionValue[src]

impl From<String> for ExtensionValue[src]

impl From<Value> for ExtensionValue[src]

impl From<bool> for ExtensionValue[src]

impl From<i64> for ExtensionValue[src]

impl PartialEq<ExtensionValue> for ExtensionValue[src]

impl Serialize for ExtensionValue[src]

impl StructuralPartialEq for ExtensionValue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,