Trait token_parser::Context[][src]

pub trait Context { }
Expand description

A trait required for all contexts being used for token parsing. By default, only the empty tuple implements it. It currently does not contain anything by default. It’s just there to achieve compatibility with features and to allow more changes without breaking anything.

Implementations on Foreign Types

impl Context for ()[src]

Implementors