pub struct MapDeserializer<I, K, V> where I: Iterator<Item=(K, V)>, K: ValueDeserializer, V: ValueDeserializer {
// some fields omitted
}
Methods
Trait Implementations
type Error = Error
fn visit<V_>(&mut self, visitor: V_) -> Result<V_::Value, Error> where V_: Visitor
fn visit_option<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where V: Visitor
fn visit_seq<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where V: Visitor
fn visit_map<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where V: Visitor
fn visit_enum<V>(&mut self, _enum: &str, _visitor: V) -> Result<V::Value, Self::Error> where V: EnumVisitor
fn visit_bytes<V>(&mut self, visitor: V) -> Result<V::Value, Self::Error> where V: Visitor
Keyboard shortcuts
- ?
- Show this help dialog
- S
- Focus the search field
- ⇤
- Move up in search results
- ⇥
- Move down in search results
- ⏎
- Go to active search result
Search tricks
Prefix searches with a type followed by a colon (e.g.
fn:
) to restrict the search to a given type.
Accepted types are: fn
, mod
,
struct
, enum
,
trait
, typedef
(or
tdef
).
Search functions by type signature (e.g.
vec -> usize
)