pub struct RateLimitStatus {
pub remaining: u32,
pub reset_at_unix: i64,
}Fields§
§remaining: u32§reset_at_unix: i64Trait Implementations§
Source§impl Clone for RateLimitStatus
impl Clone for RateLimitStatus
Source§fn clone(&self) -> RateLimitStatus
fn clone(&self) -> RateLimitStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RateLimitStatus
impl Debug for RateLimitStatus
Source§impl PartialEq for RateLimitStatus
impl PartialEq for RateLimitStatus
Source§fn eq(&self, other: &RateLimitStatus) -> bool
fn eq(&self, other: &RateLimitStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RateLimitStatus
impl StructuralPartialEq for RateLimitStatus
Auto Trait Implementations§
impl Freeze for RateLimitStatus
impl RefUnwindSafe for RateLimitStatus
impl Send for RateLimitStatus
impl Sync for RateLimitStatus
impl Unpin for RateLimitStatus
impl UnsafeUnpin for RateLimitStatus
impl UnwindSafe for RateLimitStatus
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