pub enum RateLimitCategory {
Trading,
MarketData,
Account,
Auth,
General,
}Expand description
Categories of rate limits based on Deribit API documentation
Variants§
Trading
Trading endpoints (buy, sell, cancel, etc.)
MarketData
Market data endpoints (ticker, orderbook, etc.)
Account
Account management endpoints (summary, positions, etc.)
Auth
Authentication endpoints
General
General/other endpoints
Trait Implementations§
Source§impl Clone for RateLimitCategory
impl Clone for RateLimitCategory
Source§fn clone(&self) -> RateLimitCategory
fn clone(&self) -> RateLimitCategory
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 RateLimitCategory
impl Debug for RateLimitCategory
Source§impl Hash for RateLimitCategory
impl Hash for RateLimitCategory
Source§impl PartialEq for RateLimitCategory
impl PartialEq for RateLimitCategory
impl Eq for RateLimitCategory
impl StructuralPartialEq for RateLimitCategory
Auto Trait Implementations§
impl Freeze for RateLimitCategory
impl RefUnwindSafe for RateLimitCategory
impl Send for RateLimitCategory
impl Sync for RateLimitCategory
impl Unpin for RateLimitCategory
impl UnwindSafe for RateLimitCategory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.