pub struct ResolutionStats {
pub total: u64,
pub success: u64,
pub failed: u64,
pub success_rate: f64,
}Fields§
§total: u64§success: u64§failed: u64§success_rate: f64Trait Implementations§
Source§impl Clone for ResolutionStats
impl Clone for ResolutionStats
Source§fn clone(&self) -> ResolutionStats
fn clone(&self) -> ResolutionStats
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 ResolutionStats
impl RefUnwindSafe for ResolutionStats
impl Send for ResolutionStats
impl Sync for ResolutionStats
impl Unpin for ResolutionStats
impl UnsafeUnpin for ResolutionStats
impl UnwindSafe for ResolutionStats
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