[][src]Trait emit::events::IntoValue

pub trait IntoValue {
    fn into_value(self) -> Value;
}

Represents a type that can be converted into a Value.

Required methods

fn into_value(self) -> Value

Loading content...

Implementations on Foreign Types

impl IntoValue for bool[src]

impl IntoValue for i64[src]

impl IntoValue for i8[src]

impl IntoValue for i16[src]

impl IntoValue for i32[src]

impl IntoValue for u64[src]

impl IntoValue for u8[src]

impl IntoValue for u16[src]

impl IntoValue for u32[src]

impl IntoValue for f64[src]

impl IntoValue for f32[src]

impl IntoValue for String[src]

impl<'a> IntoValue for &'a str[src]

impl<V: IntoValue> IntoValue for Vec<V>[src]

impl<V: IntoValue> IntoValue for Option<V>[src]

Loading content...

Implementors

impl IntoValue for Value[src]

Loading content...