pub trait Step: Debug {
    fn accept(&mut self, ctxt: &mut Context<'_>, value: &IOValue);
fn finish(&mut self);
fn reset(&mut self) -> Vec<IOValue>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
; }

Required methods

Implementors