pub struct QueryPhaseTiming {
pub phase: String,
pub elapsed_ms: f64,
}Fields§
§phase: String§elapsed_ms: f64Trait Implementations§
Source§impl Clone for QueryPhaseTiming
impl Clone for QueryPhaseTiming
Source§fn clone(&self) -> QueryPhaseTiming
fn clone(&self) -> QueryPhaseTiming
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 QueryPhaseTiming
impl Debug for QueryPhaseTiming
Source§impl Default for QueryPhaseTiming
impl Default for QueryPhaseTiming
Source§fn default() -> QueryPhaseTiming
fn default() -> QueryPhaseTiming
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryPhaseTiming
impl<'de> Deserialize<'de> for QueryPhaseTiming
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for QueryPhaseTiming
impl PartialEq for QueryPhaseTiming
Source§fn eq(&self, other: &QueryPhaseTiming) -> bool
fn eq(&self, other: &QueryPhaseTiming) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for QueryPhaseTiming
impl Serialize for QueryPhaseTiming
impl StructuralPartialEq for QueryPhaseTiming
Auto Trait Implementations§
impl Freeze for QueryPhaseTiming
impl RefUnwindSafe for QueryPhaseTiming
impl Send for QueryPhaseTiming
impl Sync for QueryPhaseTiming
impl Unpin for QueryPhaseTiming
impl UnsafeUnpin for QueryPhaseTiming
impl UnwindSafe for QueryPhaseTiming
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