pub struct SpeedTestResult {
pub name: String,
pub url: String,
pub response_time: f64,
pub is_success: bool,
}Fields§
§name: String§url: String§response_time: f64§is_success: boolTrait Implementations§
Source§impl Clone for SpeedTestResult
impl Clone for SpeedTestResult
Source§fn clone(&self) -> SpeedTestResult
fn clone(&self) -> SpeedTestResult
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 SpeedTestResult
impl RefUnwindSafe for SpeedTestResult
impl Send for SpeedTestResult
impl Sync for SpeedTestResult
impl Unpin for SpeedTestResult
impl UnsafeUnpin for SpeedTestResult
impl UnwindSafe for SpeedTestResult
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