pub struct SourceStats {
pub total: usize,
pub active: usize,
pub total_proxies_found: usize,
pub proxies_by_source: HashMap<String, usize>,
}Expand description
Statistics about sources managed by ProxyManager
Fields§
§total: usizeTotal number of sources
active: usizeNumber of active sources
total_proxies_found: usizeTotal proxies found from all sources
proxies_by_source: HashMap<String, usize>Proxies found per source
Trait Implementations§
Source§impl Clone for SourceStats
impl Clone for SourceStats
Source§fn clone(&self) -> SourceStats
fn clone(&self) -> SourceStats
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 SourceStats
impl RefUnwindSafe for SourceStats
impl Send for SourceStats
impl Sync for SourceStats
impl Unpin for SourceStats
impl UnsafeUnpin for SourceStats
impl UnwindSafe for SourceStats
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