Struct inth_oauth2::token::Bearer
[−]
[src]
pub struct Bearer<L: Lifetime> { // some fields omitted }
The bearer token type.
See RFC 6750.
pub struct Bearer<L: Lifetime> { // some fields omitted }
The bearer token type.
See RFC 6750.
impl<L: Lifetime + Serialize> Serialize for Bearer<L>
fn serialize<S: Serializer>(&self, serializer: &mut S) -> Result<(), S::Error>
impl<L: Lifetime + Deserialize> Deserialize for Bearer<L>
fn deserialize<D: Deserializer>(deserializer: &mut D) -> Result<Self, D::Error>
impl<L: Lifetime> Token<L> for Bearer<L>
impl<'a, L: Lifetime> Into<Authorization<Bearer>> for &'a Bearer<L>
fn into(self) -> Authorization<Bearer>
impl<L: Lifetime> FromResponse for Bearer<L>
fn from_response(json: &Json) -> Result<Self, ParseError>
fn from_response_inherit(json: &Json, prev: &Self) -> Result<Self, ParseError>
impl<L: Decodable + Lifetime> Decodable for Bearer<L>
impl<L: Encodable + Lifetime> Encodable for Bearer<L>
impl<L: Eq + Lifetime> Eq for Bearer<L>
impl<L: PartialEq + Lifetime> PartialEq for Bearer<L>
impl<L: Clone + Lifetime> Clone for Bearer<L>
fn clone(&self) -> Bearer<L>
fn clone_from(&mut self, source: &Self)
impl<L: Debug + Lifetime> Debug for Bearer<L>