Struct twitter_stream_message::entities::Entities [] [src]

pub struct Entities<'a> {
    pub hashtags: Vec<Hashtag<'a>>,
    pub media: Option<Vec<Media<'a>>>,
    pub urls: Vec<Url<'a>>,
    pub user_mentions: Vec<UserMention<'a>>,
    pub symbols: Vec<Symbol<'a>>,
}

Fields

Represents hashtags which have been parsed out of the Tweet text.

Represents media elements uploaded with the Tweet.

Represents URLs included in the text of a Tweet or within textual fields of a User object.

Represents other Twitter users mentioned in the text of the Tweet.

Represents financial symbols which have been parsed out of the Tweet text.

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter. Read more

impl<'a> Eq for Entities<'a>
[src]

impl<'a> PartialEq for Entities<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<'a> Hash for Entities<'a>
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<'a> Send for Entities<'a>

impl<'a> Sync for Entities<'a>