pub struct RateLimits {
pub dexscreener_per_minute: u32,
pub twitter_per_minute: u32,
pub newsapi_per_minute: u32,
pub exa_per_minute: u32,
}Expand description
Rate limiting configuration
Fields§
§dexscreener_per_minute: u32DexScreener requests per minute limit
twitter_per_minute: u32Twitter requests per minute limit
newsapi_per_minute: u32News API requests per minute limit
exa_per_minute: u32Exa API requests per minute limit
Trait Implementations§
Source§impl Clone for RateLimits
impl Clone for RateLimits
Source§fn clone(&self) -> RateLimits
fn clone(&self) -> RateLimits
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 RateLimits
impl Debug for RateLimits
Auto Trait Implementations§
impl Freeze for RateLimits
impl RefUnwindSafe for RateLimits
impl Send for RateLimits
impl Sync for RateLimits
impl Unpin for RateLimits
impl UnwindSafe for RateLimits
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