pub trait FromValue: Sized {
    fn from_value(value: Value) -> Result<Self>;

    fn next_functor<I: Iterator<Item = Value>>(
    ) -> Box<dyn FnMut(&mut I) -> Option<Result<Self>>> { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors