pub struct LegacyUserRaw {Show 25 fields
pub created_at: Option<String>,
pub description: Option<String>,
pub entities: Option<UserEntitiesRaw>,
pub favourites_count: Option<i32>,
pub followers_count: Option<i32>,
pub friends_count: Option<i32>,
pub media_count: Option<i32>,
pub statuses_count: Option<i32>,
pub id_str: Option<String>,
pub listed_count: Option<i32>,
pub name: Option<String>,
pub location: String,
pub geo_enabled: Option<bool>,
pub pinned_tweet_ids_str: Option<Vec<String>>,
pub profile_background_color: Option<String>,
pub profile_banner_url: Option<String>,
pub profile_image_url_https: Option<String>,
pub protected: Option<bool>,
pub screen_name: Option<String>,
pub verified: Option<bool>,
pub has_custom_timelines: Option<bool>,
pub has_extended_profile: Option<bool>,
pub url: Option<String>,
pub can_dm: Option<bool>,
pub user_id: Option<String>,
}Fields§
§created_at: Option<String>§description: Option<String>§entities: Option<UserEntitiesRaw>§favourites_count: Option<i32>§followers_count: Option<i32>§friends_count: Option<i32>§media_count: Option<i32>§statuses_count: Option<i32>§id_str: Option<String>§listed_count: Option<i32>§name: Option<String>§location: String§geo_enabled: Option<bool>§pinned_tweet_ids_str: Option<Vec<String>>§profile_background_color: Option<String>§profile_image_url_https: Option<String>§protected: Option<bool>§screen_name: Option<String>§verified: Option<bool>§has_custom_timelines: Option<bool>§has_extended_profile: Option<bool>§url: Option<String>§can_dm: Option<bool>§user_id: Option<String>Trait Implementations§
Source§impl Clone for LegacyUserRaw
impl Clone for LegacyUserRaw
Source§fn clone(&self) -> LegacyUserRaw
fn clone(&self) -> LegacyUserRaw
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 LegacyUserRaw
impl Debug for LegacyUserRaw
Source§impl<'de> Deserialize<'de> for LegacyUserRaw
impl<'de> Deserialize<'de> for LegacyUserRaw
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 LegacyUserRaw
impl RefUnwindSafe for LegacyUserRaw
impl Send for LegacyUserRaw
impl Sync for LegacyUserRaw
impl Unpin for LegacyUserRaw
impl UnwindSafe for LegacyUserRaw
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