pub struct RateLimitStateEntry {
pub name: String,
pub remaining: Option<i64>,
pub unit: Option<String>,
pub reset_after_seconds: Option<u64>,
}Fields§
§name: String§remaining: Option<i64>§unit: Option<String>§reset_after_seconds: Option<u64>Trait Implementations§
Source§impl Clone for RateLimitStateEntry
impl Clone for RateLimitStateEntry
Source§fn clone(&self) -> RateLimitStateEntry
fn clone(&self) -> RateLimitStateEntry
Returns a duplicate 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 moreSource§impl Debug for RateLimitStateEntry
impl Debug for RateLimitStateEntry
Source§impl<'de> Deserialize<'de> for RateLimitStateEntry
impl<'de> Deserialize<'de> for RateLimitStateEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RateLimitStateEntry
impl RefUnwindSafe for RateLimitStateEntry
impl Send for RateLimitStateEntry
impl Sync for RateLimitStateEntry
impl Unpin for RateLimitStateEntry
impl UnsafeUnpin for RateLimitStateEntry
impl UnwindSafe for RateLimitStateEntry
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