pub trait ToSimpleToken {
    fn as_simple_token(&self) -> Cow<'_, Token>;
}

Required Methods

Convert the token in its simplest form

Implementors