[][src]Struct pipitor::models::TwitterToken

pub struct TwitterToken {
    pub id: i64,
    pub access_token: String,
    pub access_token_secret: String,
}

Fields

id: i64access_token: Stringaccess_token_secret: String

Trait Implementations

impl Clone for TwitterToken[src]

impl Debug for TwitterToken[src]

impl<'a> From<&'a TwitterToken> for Credentials<&'a str>[src]

impl From<TwitterToken> for Credentials<Box<str>>[src]

impl From<TwitterToken> for Credentials[src]

impl HasTable for TwitterToken[src]

type Table = table

The table this type is associated with.

impl<'ident> Identifiable for &'ident TwitterToken[src]

type Id = &'ident i64

The type of this struct's identifier. Read more

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for TwitterToken where
    (i64, String, String): Queryable<__ST, __DB>, 
[src]

type Row = <(i64, String, String) as Queryable<__ST, __DB>>::Row

The Rust type you'd like to map from. Read more

Auto Trait Implementations

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> IntoSql for 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>,