Struct pod::code::VecDecodeOptions [] [src]

pub struct VecDecodeOptions<T> {
    pub len: Option<usize>,
    pub options: T,
}

Describes how to decode a Vec<T>

Fields

len

Reads Some(len) items, or until EOF

options

The options used to decode each individual item

Trait Implementations

Derived Implementations

impl<T: Debug> Debug for VecDecodeOptions<T>

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl<T: Default> Default for VecDecodeOptions<T>

fn default() -> VecDecodeOptions<T>

impl<T: Clone> Clone for VecDecodeOptions<T>

fn clone(&self) -> VecDecodeOptions<T>

fn clone_from(&mut self, source: &Self)