[][src]Struct oauth1_request::Credentials

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

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

This type represents:

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

Fields

identifier: Tsecret: T

Methods

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

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

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

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

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

Trait Implementations

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

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self