Struct dbus_serialize::encoder::DBusEncoder [] [src]

pub struct DBusEncoder {
    // some fields omitted
}

Methods

impl DBusEncoder
[src]

fn new() -> DBusEncoder

fn encode<T: Encodable>(obj: &T) -> Result<ValueEncoderError>

Trait Implementations

impl Encoder for DBusEncoder
[src]

type Error = EncoderError

fn emit_nil(&mut self) -> Result<(), Self::Error>

fn emit_usize(&mut self, v: usize) -> Result<(), Self::Error>

fn emit_u64(&mut self, v: u64) -> Result<(), Self::Error>

fn emit_u32(&mut self, v: u32) -> Result<(), Self::Error>

fn emit_u16(&mut self, v: u16) -> Result<(), Self::Error>

fn emit_u8(&mut self, v: u8) -> Result<(), Self::Error>

fn emit_isize(&mut self, v: isize) -> Result<(), Self::Error>

fn emit_i64(&mut self, v: i64) -> Result<(), Self::Error>

fn emit_i32(&mut self, v: i32) -> Result<(), Self::Error>

fn emit_i16(&mut self, v: i16) -> Result<(), Self::Error>

fn emit_i8(&mut self, _v: i8) -> Result<(), Self::Error>

fn emit_bool(&mut self, v: bool) -> Result<(), Self::Error>

fn emit_f64(&mut self, v: f64) -> Result<(), Self::Error>

fn emit_f32(&mut self, v: f32) -> Result<(), Self::Error>

fn emit_char(&mut self, v: char) -> Result<(), Self::Error>

fn emit_str(&mut self, v: &str) -> Result<(), Self::Error>

fn emit_struct<F>(&mut self, _name: &str, _len: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_struct_field<F>(&mut self, _f_name: &str, _f_idx: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_tuple<F>(&mut self, _len: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_tuple_arg<F>(&mut self, _idx: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_tuple_struct<F>(&mut self, _name: &str, _len: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_tuple_struct_arg<F>(&mut self, _f_idx: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_seq<F>(&mut self, _len: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_seq_elt<F>(&mut self, _idx: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_map<F>(&mut self, _len: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_map_elt_key<F>(&mut self, _idx: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_map_elt_val<F>(&mut self, _idx: usize, f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_option<F>(&mut self, _f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_option_none(&mut self) -> Result<(), Self::Error>

fn emit_option_some<F>(&mut self, _f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_enum<F>(&mut self, _name: &str, _f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_enum_variant<F>(&mut self, _v_name: &str, _v_id: usize, _len: usize, _f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_enum_variant_arg<F>(&mut self, _a_idx: usize, _f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_enum_struct_variant<F>(&mut self, _v_name: &str, _v_id: usize, _len: usize, _f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>

fn emit_enum_struct_variant_field<F>(&mut self, _f_name: &str, _f_idx: usize, _f: F) -> Result<(), Self::Error> where F: FnOnce(&mut Self) -> Result<(), Self::Error>