Struct egg_mode::list::List

source ·
pub struct List {
    pub name: String,
    pub user: TwitterUser,
    pub slug: String,
    pub id: u64,
    pub subscriber_count: u64,
    pub member_count: u64,
    pub full_name: String,
    pub description: String,
    pub uri: String,
    pub created_at: DateTime<Utc>,
}
Expand description

Represents the metadata for a list.

Because of the myriad ways to reference a list, there are a few seemingly-redundant fields on here. It’s worthwhile to understand all the referential fields:

  • name is the human-readable name of the list. Notably, this can contain spaces and uppercase letters.
  • slug is simply name converted to a format that can be put into a URL and used to reference the list for API calls.
  • full_name is how you’d link the list as a @mention, in the form @screen_name/slug.
  • id is the numeric ID, which can be used with ListID::from_id to make a ListID for the list.
  • uri is how you assemble a link to the list. Start with "https://twitter.com", concat this field to the end, and you have a full URL. Note that the field does start with its own slash.
  • user is a mostly-populated TwitterUser corresponding to the creator of the list. If you combine user.screen_name or user.id with slug, you can send them to ListID::from_slug to make a ListID for the list.

Fields§

§name: String

The name of the list.

§user: TwitterUser

The user who created the list.

§slug: String

The “slug” of a list, that can be combined with its creator’s UserID to refer to the list.

§id: u64

The numeric ID of the list.

§subscriber_count: u64

The number of accounts “subscribed” to the list, for whom it will appear in their collection of available lists.

§member_count: u64

The number of accounts added to the list.

§full_name: String

The full name of the list, preceded by @, that can be used to link to the list as part of a tweet, direct message, or other place on Twitter where @mentions are parsed.

§description: String

The description of the list, as entered by its creator.

§uri: String

The full name of the list, preceded by /, that can be preceded with https://twitter.com to create a link to the list.

§created_at: DateTime<Utc>

UTC timestamp of when the list was created.

Trait Implementations§

source§

impl Clone for List

source§

fn clone(&self) -> List

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for List

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for List

source§

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 RefUnwindSafe for List

§

impl Send for List

§

impl Sync for List

§

impl Unpin for List

§

impl UnwindSafe for List

Blanket Implementations§

source§

impl<T> Any for Twhere
    T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere
    T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere
    U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere
    T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere
    V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
    S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere
    T: for<'de> Deserialize<'de>,