Trait tokenizer_lib::TokenSender[][src]

pub trait TokenSender<T: PartialEq, TData> {
    fn push(&mut self, token: Token<T, TData>) -> bool;
}
Expand description

Trait for a sender that can append a token to a sequence

Required methods

Appends a new Token Will return false if could not push token

Implementors