pub struct ExtendedTweetEntities {
pub media: Vec<MediaEntity>,
}Expand description
Container for extended media information for a tweet.
If a tweet has a photo, set of photos, gif, or video attached to it, this field will be present
and contain the real media information. The information available in the media field of
entities will only contain the first photo of a set, or a thumbnail of a gif or video.
Fields§
§media: Vec<MediaEntity>Collection of extended media information attached to the tweet.
Trait Implementations§
Source§impl Clone for ExtendedTweetEntities
impl Clone for ExtendedTweetEntities
Source§fn clone(&self) -> ExtendedTweetEntities
fn clone(&self) -> ExtendedTweetEntities
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtendedTweetEntities
impl Debug for ExtendedTweetEntities
Source§impl<'de> Deserialize<'de> for ExtendedTweetEntities
impl<'de> Deserialize<'de> for ExtendedTweetEntities
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExtendedTweetEntities
impl RefUnwindSafe for ExtendedTweetEntities
impl Send for ExtendedTweetEntities
impl Sync for ExtendedTweetEntities
impl Unpin for ExtendedTweetEntities
impl UnwindSafe for ExtendedTweetEntities
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more