pub trait ParseToken {
    type Output: ListingElement;

    fn parse_token(src: &str) -> Result<Self::Output, String>;
}

Required Associated Types

Required Methods

Implementors