pub enum RateLimitCategory {
Quote,
Historical,
Orders,
Standard,
}
Expand description
Rate limit categories based on official KiteConnect API documentation
Variants§
Quote
Quote endpoints: 1 request/second
Historical
Historical candle endpoints: 3 requests/second
Orders
Order placement endpoints: 10 requests/second
Standard
All other endpoints: 10 requests/second
Implementations§
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§const fn clone_from(&mut self, source: &Self)
const 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.