/// Token returned by the authenticator function.
#[derive(Debug, PartialEq)]pubstructToken(String);implToken{pub(crate)fnnew(bytes: String)->Self{
Token(bytes)}/// Borrow as a string slice.
pubfnas_str(&self)->&str{&self.0}/// Convert to a string.
pubfninto_string(self)-> String{self.0}}