pub type BasicEncoder<'a> = VecEncoder<'a, NoCustomValueKind>;

Aliased Type§

struct BasicEncoder<'a> {
    buf: &'a mut Vec<u8>,
    max_depth: usize,
    stack_depth: usize,
    phantom: PhantomData<NoCustomValueKind>,
}

Fields§

§buf: &'a mut Vec<u8>§max_depth: usize§stack_depth: usize§phantom: PhantomData<NoCustomValueKind>