Trait serialize::EncoderHelpers [] [src]

pub trait EncoderHelpers: Encoder {
    fn emit_from_vec<T, F>(&mut self, v: &[T], f: F) -> Result<(), Self::Error> where F: FnMut(&mut Self, &T) -> Result<(), Self::Error>;
}
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

Required Methods

fn emit_from_vec<T, F>(&mut self, v: &[T], f: F) -> Result<(), Self::Error> where F: FnMut(&mut Self, &T) -> Result<(), Self::Error>

Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

Implementors