[][src]Struct egg_mode::KeyPair

pub struct KeyPair {
    pub key: Cow<'static, str>,
    pub secret: Cow<'static, str>,
}

A key/secret pair representing an OAuth token.

This struct is used as part of the authentication process. You'll need to manually create at least one of these, to hold onto your consumer token.

For more information, see the documentation for Tokens.

Example

let con_token = egg_mode::KeyPair::new("consumer key", "consumer token");

Fields

key: Cow<'static, str>

A key used to identify an application or user.

secret: Cow<'static, str>

A private key used to sign messages from an application or user.

Methods

impl KeyPair[src]

pub fn new<K, S>(key: K, secret: S) -> KeyPair where
    K: Into<Cow<'static, str>>,
    S: Into<Cow<'static, str>>, 
[src]

Creates a KeyPair with the given key and secret.

This can be called with either &'static str (a string literal) or String for either parameter.

Trait Implementations

impl Clone for KeyPair[src]

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

Performs copy-assignment from source. Read more

impl Debug for KeyPair[src]

Auto Trait Implementations

impl Send for KeyPair

impl Sync for KeyPair

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self