pub struct SlowQueryListResponse {
pub queries: Vec<SlowQueryEntry>,
pub total: u64,
pub threshold_ms: f64,
}Expand description
Slow query list response
Fields§
§queries: Vec<SlowQueryEntry>§total: u64§threshold_ms: f64Trait Implementations§
Source§impl Clone for SlowQueryListResponse
impl Clone for SlowQueryListResponse
Source§fn clone(&self) -> SlowQueryListResponse
fn clone(&self) -> SlowQueryListResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 SlowQueryListResponse
impl Debug for SlowQueryListResponse
Source§impl<'de> Deserialize<'de> for SlowQueryListResponse
impl<'de> Deserialize<'de> for SlowQueryListResponse
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
Auto Trait Implementations§
impl Freeze for SlowQueryListResponse
impl RefUnwindSafe for SlowQueryListResponse
impl Send for SlowQueryListResponse
impl Sync for SlowQueryListResponse
impl Unpin for SlowQueryListResponse
impl UnsafeUnpin for SlowQueryListResponse
impl UnwindSafe for SlowQueryListResponse
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