Trait TryIntoValue

Source
pub trait TryIntoValue {
    type Error: Error + 'static + Send + Sync;

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

Required Associated Types§

Source

type Error: Error + 'static + Send + Sync

Required Methods§

Implementors§