[−][src]Struct oauth_credentials::Credentials
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: TThe unique identifier part of the credentials pair.
secret: TThe 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]
fn clone(&self) -> Credentials<T>[src]
fn clone_from(&mut self, source: &Self)1.0.0[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]
fn from(credentials: &'a Credentials<T>) -> Self[src]
Auto Trait Implementations
impl<T> Send for Credentials<T> where
T: Send,
T: Send,
impl<T> Sync for Credentials<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Credentials<T> where
T: Unpin,
T: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,