[][src]Struct pipitor::models::Tweet

pub struct Tweet {
    pub id: i64,
    pub text: String,
    pub user_id: i64,
    pub in_reply_to_status_id: Option<i64>,
    pub quoted_status_id: Option<i64>,
    pub quoted_status_text: Option<String>,
}

Fields

id: i64text: Stringuser_id: i64in_reply_to_status_id: Option<i64>quoted_status_id: Option<i64>quoted_status_text: Option<String>

Trait Implementations

impl Clone for Tweet[src]

impl Debug for Tweet[src]

impl HasTable for Tweet[src]

type Table = table

The table this type is associated with.

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

type Id = &'ident i64

The type of this struct's identifier. Read more

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

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

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

Auto Trait Implementations

impl Send for Tweet

impl Sync for Tweet

impl Unpin for Tweet

impl UnwindSafe for Tweet

impl RefUnwindSafe for Tweet

Blanket Implementations

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

impl<T> From<T> for T[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> IntoSql for T[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self