pub struct DomainStats {
pub avg_latency_ms: f64,
pub rate_limit_count: u32,
pub min_delay_ms: u64,
}Expand description
Stats for a domain
Fields§
§avg_latency_ms: f64Average latency in milliseconds
rate_limit_count: u32Number of rate limit responses (429)
min_delay_ms: u64Minimum delay between requests in milliseconds
Trait Implementations§
Source§impl Clone for DomainStats
impl Clone for DomainStats
Source§fn clone(&self) -> DomainStats
fn clone(&self) -> DomainStats
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 moreAuto Trait Implementations§
impl Freeze for DomainStats
impl RefUnwindSafe for DomainStats
impl Send for DomainStats
impl Sync for DomainStats
impl Unpin for DomainStats
impl UnwindSafe for DomainStats
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