pub struct LegacyUser {Show 17 fields
pub created_at: String,
pub description: String,
pub entities: EntitiesOfLegacyUser,
pub favourites_count: i128,
pub followers_count: i128,
pub friends_count: i128,
pub id_str: Option<String>,
pub listed_count: i128,
pub name: String,
pub location: String,
pub pinned_tweet_ids_str: Vec<String>,
pub profile_banner_url: Option<String>,
pub profile_image_url_https: String,
pub protected: Option<bool>,
pub screen_name: String,
pub statuses_count: i128,
pub verified: bool,
}
Fields§
§created_at: String
§description: String
§entities: EntitiesOfLegacyUser
§favourites_count: i128
§followers_count: i128
§friends_count: i128
§id_str: Option<String>
§listed_count: i128
§name: String
§location: String
§pinned_tweet_ids_str: Vec<String>
§profile_image_url_https: String
§protected: Option<bool>
§screen_name: String
§statuses_count: i128
§verified: bool
Trait Implementations§
Source§impl Debug for LegacyUser
impl Debug for LegacyUser
Source§impl<'de> Deserialize<'de> for LegacyUser
impl<'de> Deserialize<'de> for LegacyUser
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 LegacyUser
impl RefUnwindSafe for LegacyUser
impl Send for LegacyUser
impl Sync for LegacyUser
impl Unpin for LegacyUser
impl UnwindSafe for LegacyUser
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