Trait serialize::DecoderHelpers
[−]
[src]
pub trait DecoderHelpers: Decoder {
fn read_to_vec<T, F>(&mut self, f: F) -> Result<Vec<T>, Self::Error> where F: FnMut(&mut Self) -> Result<T, Self::Error>;
}
Unstable (
rustc_private
): deprecated in favor of rustc-serialize on crates.io
Required Methods
fn read_to_vec<T, F>(&mut self, f: F) -> Result<Vec<T>, Self::Error> where F: FnMut(&mut Self) -> Result<T, Self::Error>
Unstable (
rustc_private
): deprecated in favor of rustc-serialize on crates.io
Implementors
impl<D: Decoder> DecoderHelpers for D