Struct serde::de::impls::BTreeMapVisitor   
            
                [−]
            
        [src]
pub struct BTreeMapVisitor<K, V> {
    // some fields omitted
}pub struct BTreeMapVisitor<K, V> {
    // some fields omitted
}impl<K, V> BTreeMapVisitor<K, V>fn new() -> Selfimpl<K, V> Visitor for BTreeMapVisitor<K, V> where K: Deserialize + Ord, V: Deserializetype Value = BTreeMap<K, V>fn visit_unit<E>(&mut self) -> Result<BTreeMap<K, V>, E> where E: Errorfn visit_map<Visitor>(&mut self, visitor: Visitor) -> Result<BTreeMap<K, V>, Visitor::Error> where Visitor: MapVisitorfn visit_bool<E>(&mut self, _v: bool) -> Result<Self::Value, E> where E: Errorfn visit_isize<E>(&mut self, v: isize) -> Result<Self::Value, E> where E: Errorfn visit_i8<E>(&mut self, v: i8) -> Result<Self::Value, E> where E: Errorfn visit_i16<E>(&mut self, v: i16) -> Result<Self::Value, E> where E: Errorfn visit_i32<E>(&mut self, v: i32) -> Result<Self::Value, E> where E: Errorfn visit_i64<E>(&mut self, _v: i64) -> Result<Self::Value, E> where E: Errorfn visit_usize<E>(&mut self, v: usize) -> Result<Self::Value, E> where E: Errorfn visit_u8<E>(&mut self, v: u8) -> Result<Self::Value, E> where E: Errorfn visit_u16<E>(&mut self, v: u16) -> Result<Self::Value, E> where E: Errorfn visit_u32<E>(&mut self, v: u32) -> Result<Self::Value, E> where E: Errorfn visit_u64<E>(&mut self, _v: u64) -> Result<Self::Value, E> where E: Errorfn visit_f32<E>(&mut self, v: f32) -> Result<Self::Value, E> where E: Errorfn visit_f64<E>(&mut self, _v: f64) -> Result<Self::Value, E> where E: Errorfn visit_char<E>(&mut self, v: char) -> Result<Self::Value, E> where E: Errorfn visit_str<E>(&mut self, _v: &str) -> Result<Self::Value, E> where E: Errorfn visit_string<E>(&mut self, v: String) -> Result<Self::Value, E> where E: Errorfn visit_named_unit<E>(&mut self, _name: &str) -> Result<Self::Value, E> where E: Errorfn visit_none<E>(&mut self) -> Result<Self::Value, E> where E: Errorfn visit_some<D>(&mut self, _deserializer: &mut D) -> Result<Self::Value, D::Error> where D: Deserializerfn visit_seq<V>(&mut self, _visitor: V) -> Result<Self::Value, V::Error> where V: SeqVisitorfn visit_bytes<E>(&mut self, _v: &[u8]) -> Result<Self::Value, E> where E: Errorfn visit_byte_buf<E>(&mut self, _v: Vec<u8>) -> Result<Self::Value, E> where E: Error
                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)