pub trait Tokenize {
    fn into_tokens(self) -> Vec<Token>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

Tokens conversion trait

Required Methods

Convert to list of tokens

Implementations on Foreign Types

Implementors