pub struct LegacyTweet {Show 18 fields
pub conversation_id_str: String,
pub created_at: String,
pub favorite_count: i128,
pub full_text: String,
pub entities: Entities,
pub extended_entities: Option<ExtendedEntities>,
pub id_str: String,
pub in_reply_to_status_id_str: Option<String>,
pub place: Option<Place>,
pub reply_count: i128,
pub retweet_count: i128,
pub retweeted_status_id_str: Option<String>,
pub retweeted_status_result: Option<RetweetedStatusResult>,
pub quoted_status_id_str: Option<String>,
pub self_thread: Option<SelfThread>,
pub time: Option<String>,
pub user_id_str: String,
pub ext_views: Option<ExtViews>,
}
Fields§
§conversation_id_str: String
§created_at: String
§favorite_count: i128
§full_text: String
§entities: Entities
§extended_entities: Option<ExtendedEntities>
§id_str: String
§in_reply_to_status_id_str: Option<String>
§place: Option<Place>
§reply_count: i128
§retweet_count: i128
§retweeted_status_id_str: Option<String>
§retweeted_status_result: Option<RetweetedStatusResult>
§quoted_status_id_str: Option<String>
§self_thread: Option<SelfThread>
§time: Option<String>
§user_id_str: String
§ext_views: Option<ExtViews>
Trait Implementations§
Source§impl Debug for LegacyTweet
impl Debug for LegacyTweet
Source§impl<'de> Deserialize<'de> for LegacyTweet
impl<'de> Deserialize<'de> for LegacyTweet
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 LegacyTweet
impl RefUnwindSafe for LegacyTweet
impl Send for LegacyTweet
impl Sync for LegacyTweet
impl Unpin for LegacyTweet
impl UnwindSafe for LegacyTweet
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