pub trait Tokenize {
    fn tokenize(&self) -> Result<Tokens, CalError>;
}

Required Methods

Implementations on Foreign Types

Implementors