RateLimitStatus

Struct RateLimitStatus 

Source
pub struct RateLimitStatus {
    pub direct: HashMap<DirectMethod, Response<()>>,
    pub place: HashMap<PlaceMethod, Response<()>>,
    pub search: HashMap<SearchMethod, Response<()>>,
    pub service: HashMap<ServiceMethod, Response<()>>,
    pub tweet: HashMap<TweetMethod, Response<()>>,
    pub user: HashMap<UserMethod, Response<()>>,
    pub list: HashMap<ListMethod, Response<()>>,
}
Expand description

Represents the current rate-limit status of many Twitter API calls.

This is organized by module, so for example, if you wanted to see your rate-limit status for tweet::home_timeline, you could access it like this:

use egg_mode::service::TweetMethod;
println!("home_timeline calls remaining: {}",
         status.tweet[&TweetMethod::HomeTimeline].rate_limit_status.remaining);

It’s important to note that not every API method is available through this call. Namely, most calls that require a POST under-the-hood (those that add or modify data with the Twitter service) are not shown through this method. For a listing of methods available for rate-limit querying, see the *Method enums available in egg_mode::service.

Fields§

§direct: HashMap<DirectMethod, Response<()>>

The rate-limit status for methods in the direct module.

§place: HashMap<PlaceMethod, Response<()>>

The rate-limit status for methods in the place module.

§search: HashMap<SearchMethod, Response<()>>

The rate-limit status for methods in the search module.

§service: HashMap<ServiceMethod, Response<()>>

The rate-limit status for methods in the service module.

§tweet: HashMap<TweetMethod, Response<()>>

The rate-limit status for methods in the tweet module.

§user: HashMap<UserMethod, Response<()>>

The rate-limit status for methods in the user module.

§list: HashMap<ListMethod, Response<()>>

The rate-limit status for methods in the list module.

Trait Implementations§

Source§

impl Debug for RateLimitStatus

Source§

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

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

impl<'de> Deserialize<'de> for RateLimitStatus

Source§

fn deserialize<D>(ser: D) -> StdResult<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

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 T
where U: From<T>,

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 for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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 T
where T: for<'de> Deserialize<'de>,