Struct twitter_stream_message::user::User [] [src]

pub struct User<'a> {
    pub contributors_enabled: bool,
    pub created_at: DateTime,
    pub default_profile: bool,
    pub default_profile_image: bool,
    pub description: Option<Cow<'a, str>>,
    pub favourites_count: u64,
    pub follow_request_sent: Option<bool>,
    pub followers_count: u64,
    pub friends_count: u64,
    pub geo_enabled: bool,
    pub id: UserId,
    pub is_translator: bool,
    pub lang: Cow<'a, str>,
    pub listed_count: u64,
    pub location: Option<Cow<'a, str>>,
    pub name: Cow<'a, str>,
    pub profile_background_color: Cow<'a, str>,
    pub profile_background_image_url: Option<Cow<'a, str>>,
    pub profile_background_image_url_https: Option<Cow<'a, str>>,
    pub profile_background_tile: bool,
    pub profile_banner_url: Option<Cow<'a, str>>,
    pub profile_image_url: Cow<'a, str>,
    pub profile_image_url_https: Cow<'a, str>,
    pub profile_link_color: Cow<'a, str>,
    pub profile_sidebar_border_color: Cow<'a, str>,
    pub profile_sidebar_fill_color: Cow<'a, str>,
    pub profile_text_color: Cow<'a, str>,
    pub profile_use_background_image: bool,
    pub protected: bool,
    pub screen_name: Cow<'a, str>,
    pub statuses_count: u64,
    pub time_zone: Option<Cow<'a, str>>,
    pub url: Option<Cow<'a, str>>,
    pub utc_offset: Option<i64>,
    pub verified: bool,
    pub withheld_in_countries: Option<Cow<'a, str>>,
    pub withheld_scope: Option<WithheldScope<'a>>,
}

Represents a user on Twitter.

Reference

  1. Users — Twitter Developers

Fields

Indicates that the user has an account with “contributor mode” enabled, allowing for Tweets issued by the user to be co-authored by another account. Rarely true.

The UTC datetime that the user account was created on Twitter.

When true, indicates that the user has not altered the theme or background of their user profile.

When true, indicates that the user has not uploaded their own avatar and a default egg avatar is used instead.

The user-defined UTF-8 string describing their account.

The number of tweets this user has favorited in the account’s lifetime. British spelling used in the field name for historical reasons.

Perspectival. When true, indicates that the authenticating user has issued a follow request to this protected user account.

The number of followers this account currently has. Under certain conditions of duress, this field will temporarily indicate 0.

The number of users this account is following (AKA their “followings”). Under certain conditions of duress, this field will temporarily indicate 0.

When true, indicates that the user has enabled the possibility of geotagging their Tweets. This field must be true for the current user to attach geographic data when using POST statuses / update.

The integer representation of the unique identifier for this User.

When true, indicates that the user is a participant in Twitter’s translator community.

The BCP 47 code for the user’s self-declared user interface language. May or may not have anything to do with the content of their Tweets.

The number of public lists that this user is a member of.

The user-defined location for this account’s profile. Not necessarily a location nor parseable. This field will occasionally be fuzzily interpreted by the Search service.

The name of the user, as they’ve defined it. Not necessarily a person’s name. Typically capped at 20 characters, but subject to change.

The hexadecimal color chosen by the user for their background.

A HTTP-based URL pointing to the background image the user has uploaded for their profile.

A HTTPS-based URL pointing to the background image the user has uploaded for their profile.

When true, indicates that the user’s profile_background_image_url should be tiled when displayed.

The HTTPS-based URL pointing to the standard web representation of the user’s uploaded profile banner. By adding a final path element of the URL, you can obtain different image sizes optimized for specific displays.

In the future, an API method will be provided to serve these URLs so that you need not modify the original URL.

For size variations, please see User Profile Images and Banners.

A HTTP-based URL pointing to the user’s avatar image. See User Profile Images and Banners.

A HTTPS-based URL pointing to the user’s avatar image.

The hexadecimal color the user has chosen to display links with in their Twitter UI.

The hexadecimal color the user has chosen to display sidebar borders with in their Twitter UI.

The hexadecimal color the user has chosen to display sidebar backgrounds with in their Twitter UI.

The hexadecimal color the user has chosen to display text with in their Twitter UI.

When true, indicates the user wants their uploaded background image to be used.

When true, indicates that this user has chosen to protect their Tweets. See About Public and Protected Tweets.

The screen name, handle, or alias that this user identifies themselves with.

screen_names are unique but subject to change. Use id as a user identifier whenever possible.

Typically a maximum of 15 characters long, but some historical accounts may exist with longer names.

The number of tweets (including retweets) issued by the user.

A string describing the Time Zone this user declares themselves within.

A URL provided by the user in association with their profile.

The offset from GMT/UTC in seconds.

When true, indicates that the user has a verified account. See Verified Accounts.

When present, indicates a textual representation of the two-letter country codes this user is withheld from.

When present, indicates whether the content being withheld is the Status or a User.

Trait Implementations

impl<'a> Clone for User<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for User<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq for User<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for User<'a>

impl<'a> Sync for User<'a>