pub struct ProviderStats {
pub name: String,
pub total_proxies: usize,
pub valid_proxies: usize,
pub avg_success_rate: f32,
pub avg_response_time: Option<Duration>,
}Fields§
§name: String§total_proxies: usize§valid_proxies: usize§avg_success_rate: f32§avg_response_time: Option<Duration>Trait Implementations§
Source§impl Clone for ProviderStats
impl Clone for ProviderStats
Source§fn clone(&self) -> ProviderStats
fn clone(&self) -> ProviderStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProviderStats
impl RefUnwindSafe for ProviderStats
impl Send for ProviderStats
impl Sync for ProviderStats
impl Unpin for ProviderStats
impl UnsafeUnpin for ProviderStats
impl UnwindSafe for ProviderStats
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