[][src]Struct carapax_ratelimit::RateLimitList

pub struct RateLimitList { /* fields omitted */ }

Limit updates per user or chat for given IDs

Key considered missing for every update that not found in list

Methods

impl RateLimitList[src]

pub fn with_users(self, users: Vec<UserId>) -> Self[src]

User IDs to limit

pub fn with_chats(self, chats: Vec<ChatId>) -> Self[src]

Chat IDs to limit

pub fn with_user<I>(self, user_id: I) -> Self where
    I: Into<UserId>, 
[src]

User ID to limit

pub fn with_chat<I>(self, chat_id: I) -> Self where
    I: Into<ChatId>, 
[src]

Chat ID to limit

Trait Implementations

impl RateLimitKey for RateLimitList[src]

type Key = RateLimitListKey

Type of the key

impl Default for RateLimitList[src]

impl Clone for RateLimitList[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RateLimitList[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Any for T where
    T: Any

impl<T> Erased for T

impl<T> CloneAny for T where
    T: Clone + Any