pub struct BinanceRateLimitQuota {
pub rate_limit_type: &'static str,
pub interval: &'static str,
pub interval_num: u32,
pub limit: u32,
}Expand description
Describes a static rate limit quota for a product type.
Fields§
§rate_limit_type: &'static strRate limit type identifier (REQUEST_WEIGHT or ORDERS).
interval: &'static strTime interval unit (SECOND, MINUTE, DAY).
interval_num: u32Number of intervals.
limit: u32Maximum allowed requests for the interval.
Trait Implementations§
Source§impl Clone for BinanceRateLimitQuota
impl Clone for BinanceRateLimitQuota
Source§fn clone(&self) -> BinanceRateLimitQuota
fn clone(&self) -> BinanceRateLimitQuota
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinanceRateLimitQuota
impl Debug for BinanceRateLimitQuota
impl Copy for BinanceRateLimitQuota
Auto Trait Implementations§
impl Freeze for BinanceRateLimitQuota
impl RefUnwindSafe for BinanceRateLimitQuota
impl Send for BinanceRateLimitQuota
impl Sync for BinanceRateLimitQuota
impl Unpin for BinanceRateLimitQuota
impl UnwindSafe for BinanceRateLimitQuota
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more