Trait MapKeyEncode

Source
pub trait MapKeyEncode: ValueEncode { }
Expand description

This trait allows for encoding values of map key fields.

Implementations on Foreign Types§

Source§

impl<V, E, F> MapKeyEncode for MapErr<V, E, F>
where V: MapKeyEncode, F: Fn(Error) -> E, Error: From<E>,

Source§

impl<V, T, E, F> MapKeyEncode for TryMapFrom<V, T, E, F>
where V: MapKeyEncode, F: Fn(T) -> Result<V::Item, E>, Error: From<E>,

Source§

impl<V, T, F> MapKeyEncode for MapFrom<V, T, F>
where V: MapKeyEncode, F: Fn(T) -> V::Item,

Implementors§