[][src]Struct pipitor::models::LastTweet

pub struct LastTweet {
    pub id: i64,
    pub status_id: i64,
}

Fields

id: i64status_id: i64

Trait Implementations

impl Clone for LastTweet[src]

impl Debug for LastTweet[src]

impl HasTable for LastTweet[src]

type Table = table

The table this type is associated with.

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

type Id = &'ident i64

The type of this struct's identifier. Read more

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

type Row = <(i64, i64) 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>,