pub trait StartMarker {
    type token: Parse;
    type tokend: Parse + ToString + Clone;

    // Required methods
    fn name() -> Option<String>;
    fn tokenp() -> fn(_: Cursor<'_>) -> bool;
    fn token_token() -> TokenStream2;
}

Required Associated Types§

Required Methods§

Implementors§