pub trait Token: Send + Sync { // Required method fn as_str(&self) -> &str; }
An authentication token that can be passed as a bearer credential.
Returns the token string.