pub type ScryptoEncoder<'a> = VecEncoder<'a, ScryptoCustomValueKind>;

Aliased Type§

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

Fields§

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