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>>,
}Represents Entities.
Reference
Fields
Represents hashtags which have been parsed out of the Tweet text.
media: Option<Vec<Media<'a>>>
Represents media elements uploaded with the Tweet.
urls: Vec<Url<'a>>
Represents URLs included in the text of a Tweet or within textual fields of a User object.
user_mentions: Vec<UserMention<'a>>
Represents other Twitter users mentioned in the text of the Tweet.
symbols: Vec<Symbol<'a>>
Represents financial symbols which have been parsed out of the Tweet text.
Trait Implementations
impl<'a> Clone for Entities<'a>[src]
fn clone(&self) -> Entities<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<'a> Debug for Entities<'a>[src]
impl<'a> Eq for Entities<'a>[src]
impl<'a> PartialEq for Entities<'a>[src]
fn eq(&self, __arg_0: &Entities<'a>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Entities<'a>) -> bool
This method tests for !=.