Trait protobuf_codec::field::value::NumericValueDecode [] [src]

pub trait NumericValueDecode: ValueDecode { }

This trait allows for decoding numeric values.

Implementations on Foreign Types

impl<V, T, F> NumericValueDecode for Map<V, T, F> where
    V: NumericValueDecode,
    F: Fn(V::Item) -> T, 
[src]

impl<V, T, E, F> NumericValueDecode for TryMap<V, T, E, F> where
    V: NumericValueDecode,
    F: Fn(V::Item) -> Result<T, E>,
    Error: From<E>, 
[src]

impl<V, E, F> NumericValueDecode for MapErr<V, E, F> where
    V: NumericValueDecode,
    F: Fn(Error) -> E,
    Error: From<E>, 
[src]

Implementors