#[non_exhaustive]pub struct RatelimitInfo {
pub timeout: Duration,
pub limit: i64,
pub method: LightMethod,
pub path: String,
pub global: bool,
}
Expand description
Passed to the Ratelimiter::set_ratelimit_callback
callback. If using Client, that callback
is initialized to call the EventHandler::ratelimit()
method.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.timeout: Duration
§limit: i64
§method: LightMethod
§path: String
§global: bool
Trait Implementations§
Source§impl Clone for RatelimitInfo
impl Clone for RatelimitInfo
Source§fn clone(&self) -> RatelimitInfo
fn clone(&self) -> RatelimitInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for RatelimitInfo
impl RefUnwindSafe for RatelimitInfo
impl Send for RatelimitInfo
impl Sync for RatelimitInfo
impl Unpin for RatelimitInfo
impl UnwindSafe for RatelimitInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more