Struct twitter_stream::entities::Entities
[−]
[src]
pub struct Entities {
pub hashtags: Vec<Hashtag>,
pub media: Option<Vec<Media>>,
pub urls: Vec<Url>,
pub user_mentions: Vec<UserMention>,
pub symbols: Vec<Symbol>,
}Represents Entities.
Reference
Fields
Represents hashtags which have been parsed out of the Tweet text.
media: Option<Vec<Media>>
Represents media elements uploaded with the Tweet.
urls: Vec<Url>
Represents URLs included in the text of a Tweet or within textual fields of a User object.
user_mentions: Vec<UserMention>
Represents other Twitter users mentioned in the text of the Tweet.
symbols: Vec<Symbol>
Represents financial symbols which have been parsed out of the Tweet text.
Trait Implementations
impl Clone for Entities[src]
fn clone(&self) -> Entities
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 Debug for Entities[src]
impl Eq for Entities[src]
impl PartialEq for Entities[src]
fn eq(&self, __arg_0: &Entities) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Entities) -> bool
This method tests for !=.
impl Hash for Entities[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher1.3.0
Feeds a slice of this type into the state provided.