pub struct ServerTiming {
pub receive_wall_ns: Option<i64>,
pub receive_mono_ns: Option<i64>,
pub send_wall_ns: Option<i64>,
pub send_mono_ns: Option<i64>,
pub midpoint_wall_ns: Option<i64>,
pub midpoint_mono_ns: Option<i64>,
pub processing: Option<Duration>,
}Fields§
§receive_wall_ns: Option<i64>§receive_mono_ns: Option<i64>§send_wall_ns: Option<i64>§send_mono_ns: Option<i64>§midpoint_wall_ns: Option<i64>§midpoint_mono_ns: Option<i64>§processing: Option<Duration>Trait Implementations§
Source§impl Clone for ServerTiming
impl Clone for ServerTiming
Source§fn clone(&self) -> ServerTiming
fn clone(&self) -> ServerTiming
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 moreSource§impl Debug for ServerTiming
impl Debug for ServerTiming
Source§impl PartialEq for ServerTiming
impl PartialEq for ServerTiming
Source§fn eq(&self, other: &ServerTiming) -> bool
fn eq(&self, other: &ServerTiming) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ServerTiming
impl Eq for ServerTiming
impl StructuralPartialEq for ServerTiming
Auto Trait Implementations§
impl Freeze for ServerTiming
impl RefUnwindSafe for ServerTiming
impl Send for ServerTiming
impl Sync for ServerTiming
impl Unpin for ServerTiming
impl UnsafeUnpin for ServerTiming
impl UnwindSafe for ServerTiming
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