pub struct LimitUsage {
pub count: u32,
pub limit: u32,
pub remaining: u32,
}Expand description
Usage information for a rate limit constraint.
Fields§
§count: u32§limit: u32§remaining: u32Auto Trait Implementations§
impl Freeze for LimitUsage
impl RefUnwindSafe for LimitUsage
impl Send for LimitUsage
impl Sync for LimitUsage
impl Unpin for LimitUsage
impl UnsafeUnpin for LimitUsage
impl UnwindSafe for LimitUsage
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