[][src]Struct log::key_values::value::FromAny

pub struct FromAny<'a>(_);

A builder for a value.

An instance of this type is passed to the Value::from_any method.

Methods

impl<'a> FromAny<'a>[src]

pub fn debug(
    self,
    v: impl Debug
) -> Result<(), Error>
[src]

Visit a value that can be formatted.

impl<'a> FromAny<'a>[src]

pub fn sval(
    self,
    v: impl Value + Debug
) -> Result<(), Error>
[src]

Visit a value that can be streamed with sval.

impl<'a> FromAny<'a>[src]

pub fn serde(
    self,
    v: impl Serialize + Debug
) -> Result<(), Error>
[src]

Visit a value that can be streamed with serde.

Auto Trait Implementations

impl<'a> !Send for FromAny<'a>

impl<'a> !Sync for FromAny<'a>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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