Type Alias ValueGetter

Source
pub type ValueGetter<From, E> = Box<dyn Fn(&From) -> Result<Value, E>>;
Expand description

A function Type that projects a reference to From to a Value

Aliased Typeยง

pub struct ValueGetter<From, E>(/* private fields */);