Struct tweet::types::Tweet [] [src]

pub struct Tweet {
    pub text: String,
    pub name: String,
    pub retweets: String,
    pub favorites: String,
    pub id: String,
}

Struct encapsulating tweets. Includes the text, name of the user, number of retweets, and number of favorites.

Fields

Trait Implementations

impl Clone for Tweet
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Tweet

impl Sync for Tweet