[][src]Struct oauth_credentials::Credentials

pub struct Credentials<T> {
    pub identifier: T,
    pub secret: T,
}

A "credentials" pair defined in RFC 5849 section 1.1.

This type represents:

  • Client credentials (consumer key and secret)
  • Temporary credentials (request token and secret)
  • Token credentials (access token and secret)

Fields

identifier: T

The unique identifier part of the credentials pair.

secret: T

The shared secret part of the credentials pair.

Implementations

impl<T: Borrow<str>> Credentials<T>[src]

pub fn new(identifier: T, secret: T) -> Self[src]

Creates a new Credentials.

pub fn identifier(&self) -> &str[src]

Returns the unique identifier part of the credentials pair.

pub fn secret(&self) -> &str[src]

Returns the shared secret part of the credentials pair.

pub fn as_ref(&self) -> Credentials<&str>[src]

Converts from &Credentials<T> to Credentials<&str>.

Trait Implementations

impl<T: Clone> Clone for Credentials<T>[src]

impl<T: Copy> Copy for Credentials<T>[src]

impl<T: Debug> Debug for Credentials<T>[src]

impl<'a, T: Borrow<str>> From<&'a Credentials<T>> for Credentials<&'a str>[src]

Auto Trait Implementations

impl<T> Send for Credentials<T> where
    T: Send

impl<T> Sync for Credentials<T> where
    T: Sync

impl<T> Unpin for Credentials<T> where
    T: Unpin

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> From<T> for T[src]

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

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.