[][src]Enum egg_mode::service::TweetMethod

pub enum TweetMethod {
    Show,
    Lookup,
    RetweetersOf,
    RetweetsOf,
    HomeTimeline,
    MentionsTimeline,
    UserTimeline,
    RetweetsOfMe,
    LikedBy,
}

Method identifiers from the tweet module, for use by rate_limit_status.

Variants

Show

tweet::show

Lookup

tweet::lookup

RetweetersOf

tweet::retweeters_of

RetweetsOf

tweet::retweets_of

HomeTimeline

tweet::home_timeline

MentionsTimeline

tweet::mentions_timeline

UserTimeline

tweet::user_timeline

RetweetsOfMe

tweet::retweets_of_me

LikedBy

tweet::liked_by

Trait Implementations

impl Debug for TweetMethod[src]

impl Eq for TweetMethod[src]

impl Hash for TweetMethod[src]

impl PartialEq<TweetMethod> for TweetMethod[src]

impl StructuralEq for TweetMethod[src]

impl StructuralPartialEq for TweetMethod[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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