[][src]Struct egg_mode::auth::KeyPair

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

A key/secret pair representing the app that is sending a request or an authorization from a user.

This type is used as part of the authentication process and to sign API requests afterward. For the most part it's used internally as part of a Token, but at the very beginning of the authentication process, you'll need to manually create one to hold onto your "consumer token" and request a request token.

For more information, see the authentication documentation.

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.

Implementations

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]

impl Debug for KeyPair[src]

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

impl Serialize for KeyPair[src]

Auto Trait Implementations

impl RefUnwindSafe for KeyPair

impl Send for KeyPair

impl Sync for KeyPair

impl Unpin for KeyPair

impl UnwindSafe for KeyPair

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: for<'de> Deserialize<'de>, 
[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>,