[][src]Struct kuon::Tweet

pub struct Tweet {
    pub created_at: String,
    pub id: u64,
    pub id_str: String,
    pub text: String,
    pub truncated: bool,
    pub entities: Box<TweetEntities>,
    pub metadata: Option<TweetMetadata>,
    pub source: String,
    pub user: Value,
    pub in_reply_to_status_id: Option<u64>,
    pub in_reply_to_status_id_str: Option<String>,
    pub in_reply_to_user_id: Option<u64>,
    pub in_reply_to_user_id_str: Option<String>,
    pub in_reply_to_screen_name: Option<String>,
    pub geo: Option<Value>,
    pub coordinates: Option<Value>,
    pub place: Option<Value>,
    pub contributors: Option<Value>,
    pub is_quote_status: bool,
    pub quoted_status_id: Option<u64>,
    pub quoted_status_id_str: Option<String>,
    pub quoted_status: Option<Value>,
    pub retweet_count: u64,
    pub favorite_count: u64,
    pub favorited: bool,
    pub retweeted: bool,
    pub possibly_sensitive: Option<bool>,
    pub lang: String,
}

Fields

created_at: Stringid: u64id_str: Stringtext: Stringtruncated: boolentities: Box<TweetEntities>metadata: Option<TweetMetadata>source: Stringuser: Valuein_reply_to_status_id: Option<u64>in_reply_to_status_id_str: Option<String>in_reply_to_user_id: Option<u64>in_reply_to_user_id_str: Option<String>in_reply_to_screen_name: Option<String>geo: Option<Value>coordinates: Option<Value>place: Option<Value>contributors: Option<Value>is_quote_status: boolquoted_status_id: Option<u64>quoted_status_id_str: Option<String>quoted_status: Option<Value>retweet_count: u64favorite_count: u64favorited: boolretweeted: boolpossibly_sensitive: Option<bool>lang: String

Trait Implementations

impl Clone for Tweet[src]

impl Debug for Tweet[src]

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

impl Serialize for Tweet[src]

Auto Trait Implementations

impl RefUnwindSafe for Tweet

impl Send for Tweet

impl Sync for Tweet

impl Unpin for Tweet

impl UnwindSafe for Tweet

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