pub trait MatchTok{
// Required method
fn to_token_stream(&self) -> KTokenStream;
// Provided method
fn match_tok(&self, tok: &str) -> bool { ... }
}pub trait MatchTok{
// Required method
fn to_token_stream(&self) -> KTokenStream;
// Provided method
fn match_tok(&self, tok: &str) -> bool { ... }
}