pub trait TryIntoValue {
    type Error: Error + 'static;

    // Required method
    fn try_into_value(self) -> Result<Value, Self::Error>;
}

Required Associated Types§

source

type Error: Error + 'static

Required Methods§

Implementors§

source§

impl<T: Serialize> TryIntoValue for T

§

type Error = SerializationError