pub struct ServerPerformance {
pub server: TestServer,
pub latency_ms: f64,
pub jitter_ms: f64,
pub packet_loss: f64,
pub download_score: f64,
pub upload_score: f64,
pub overall_score: f64,
}Fields§
§server: TestServer§latency_ms: f64§jitter_ms: f64§packet_loss: f64§download_score: f64§upload_score: f64§overall_score: f64Trait Implementations§
Source§impl Clone for ServerPerformance
impl Clone for ServerPerformance
Source§fn clone(&self) -> ServerPerformance
fn clone(&self) -> ServerPerformance
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 ServerPerformance
impl RefUnwindSafe for ServerPerformance
impl Send for ServerPerformance
impl Sync for ServerPerformance
impl Unpin for ServerPerformance
impl UnsafeUnpin for ServerPerformance
impl UnwindSafe for ServerPerformance
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