[][src]Struct oauth2::RefreshToken

pub struct RefreshToken(_);

Refresh token used to obtain a new access token (if supported by the authorization server).

Trait Implementations

impl AsRef<str> for RefreshToken[src]

impl Clone for RefreshToken[src]

impl Debug for RefreshToken[src]

impl Deref for RefreshToken[src]

type Target = str

The resulting type after dereferencing.

impl<'de> Deserialize<'de> for RefreshToken[src]

impl Eq for RefreshToken[src]

impl<'a> From<&'a String> for RefreshToken[src]

impl<'a> From<&'a str> for RefreshToken[src]

impl From<String> for RefreshToken[src]

impl Hash for RefreshToken[src]

impl<'a> Into<Cow<'a, str>> for &'a RefreshToken[src]

impl<'a> Into<String> for RefreshToken[src]

impl Ord for RefreshToken[src]

impl PartialEq<RefreshToken> for RefreshToken[src]

impl PartialOrd<RefreshToken> for RefreshToken[src]

impl Serialize for RefreshToken[src]

impl StructuralEq for RefreshToken[src]

impl StructuralPartialEq for RefreshToken[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,