Struct winreg::serialization::Decoder  
                   
                       [−]
                   
               [src]
pub struct Decoder {
    // some fields omitted
}pub struct Decoder {
    // some fields omitted
}impl Decoder[src]fn from_key(key: &RegKey) -> DecodeResult<Decoder>impl Debug for Decoder[src]impl Decoder for Decoder[src]type Error = DecoderErrorfn read_nil(&mut self) -> DecodeResult<()>fn read_usize(&mut self) -> DecodeResult<usize>fn read_u64(&mut self) -> DecodeResult<u64>fn read_u32(&mut self) -> DecodeResult<u32>fn read_u16(&mut self) -> DecodeResult<u16>fn read_u8(&mut self) -> DecodeResult<u8>fn read_isize(&mut self) -> DecodeResult<isize>fn read_i64(&mut self) -> DecodeResult<i64>fn read_i32(&mut self) -> DecodeResult<i32>fn read_i16(&mut self) -> DecodeResult<i16>fn read_i8(&mut self) -> DecodeResult<i8>fn read_bool(&mut self) -> DecodeResult<bool>fn read_f64(&mut self) -> DecodeResult<f64>fn read_f32(&mut self) -> DecodeResult<f32>fn read_char(&mut self) -> DecodeResult<char>fn read_str(&mut self) -> DecodeResult<String>fn read_enum<T, F>(&mut self, _name: &str, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_enum_variant<T, F>(&mut self, _names: &[&str], _f: F) -> DecodeResult<T> where F: FnMut(&mut Self, usize) -> DecodeResult<T>fn read_enum_variant_arg<T, F>(&mut self, _a_idx: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_enum_struct_variant<T, F>(&mut self, _names: &[&str], _f: F) -> DecodeResult<T> where F: FnMut(&mut Self, usize) -> DecodeResult<T>fn read_enum_struct_variant_field<T, F>(&mut self, _f_name: &str, _f_idx: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_struct<T, F>(&mut self, _s_name: &str, _len: usize, f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_struct_field<T, F>(&mut self, f_name: &str, _f_idx: usize, f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_tuple<T, F>(&mut self, _len: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_tuple_arg<T, F>(&mut self, _a_idx: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_tuple_struct<T, F>(&mut self, _s_name: &str, _len: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_tuple_struct_arg<T, F>(&mut self, _a_idx: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_option<T, F>(&mut self, _f: F) -> DecodeResult<T> where F: FnMut(&mut Self, bool) -> DecodeResult<T>fn read_seq<T, F>(&mut self, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self, usize) -> DecodeResult<T>fn read_seq_elt<T, F>(&mut self, _idx: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_map<T, F>(&mut self, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self, usize) -> DecodeResult<T>fn read_map_elt_key<T, F>(&mut self, _idx: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn read_map_elt_val<T, F>(&mut self, _idx: usize, _f: F) -> DecodeResult<T> where F: FnOnce(&mut Self) -> DecodeResult<T>fn error(&mut self, err: &str) -> Self::Error