pub trait TokenExt: Clone + Copy + PartialEq {
    fn matches_class(&self, other: &Self) -> bool;
}

Required Methods

Implementors