Struct reqwest::header::Bearer
[−]
[src]
pub struct Bearer { pub token: String, }
Token holder for Bearer Authentication, most often seen with oauth
Fields
token: String
Actual bearer token as a string
Trait Implementations
impl Debug for Bearer
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Scheme for Bearer
[src]
fn scheme() -> Option<&'static str>
An optional Scheme name. Read more
fn fmt_scheme(&self, f: &mut Formatter) -> Result<(), Error>
Format the Scheme data into a header value.