[][src]Struct pipitor::models::NewTwitterTokens

pub struct NewTwitterTokens<'a> {
    pub id: i64,
    pub access_token: &'a str,
    pub access_token_secret: &'a str,
}

Fields

id: i64access_token: &'a straccess_token_secret: &'a str

Trait Implementations

impl<'a> Clone for NewTwitterTokens<'a>[src]

impl<'a> Debug for NewTwitterTokens<'a>[src]

impl<'a, 'insert> Insertable<table> for NewTwitterTokens<'a>[src]

type Values = <(Option<Eq<id, i64>>, Option<Eq<access_token, &'a str>>, Option<Eq<access_token_secret, &'a str>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'a, 'insert> Insertable<table> for &'insert NewTwitterTokens<'a>[src]

type Values = <(Option<Eq<id, &'insert i64>>, Option<Eq<access_token, &'insert &'a str>>, Option<Eq<access_token_secret, &'insert &'a str>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'a, 'insert> UndecoratedInsertRecord<table> for NewTwitterTokens<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for NewTwitterTokens<'a>

impl<'a> Send for NewTwitterTokens<'a>

impl<'a> Sync for NewTwitterTokens<'a>

impl<'a> Unpin for NewTwitterTokens<'a>

impl<'a> UnwindSafe for NewTwitterTokens<'a>

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