pub struct QueryTimelineSample {
pub active_units: Option<String>,
pub completed_units: Option<String>,
pub elapsed_ms: Option<String>,
pub pending_units: Option<String>,
pub total_slot_ms: Option<String>,
}
Fields§
§active_units: Option<String>
Total number of units currently being processed by workers. This does not correspond directly to slot usage. This is the largest value observed since the last sample.
completed_units: Option<String>
Total parallel units of work completed by this query.
elapsed_ms: Option<String>
Milliseconds elapsed since the start of query execution.
pending_units: Option<String>
Total parallel units of work remaining for the active stages.
total_slot_ms: Option<String>
Cumulative slot-ms consumed by the query.
Trait Implementations§
Source§impl Clone for QueryTimelineSample
impl Clone for QueryTimelineSample
Source§fn clone(&self) -> QueryTimelineSample
fn clone(&self) -> QueryTimelineSample
Returns a copy 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 QueryTimelineSample
impl Debug for QueryTimelineSample
Source§impl Default for QueryTimelineSample
impl Default for QueryTimelineSample
Source§fn default() -> QueryTimelineSample
fn default() -> QueryTimelineSample
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryTimelineSample
impl<'de> Deserialize<'de> for QueryTimelineSample
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 QueryTimelineSample
impl RefUnwindSafe for QueryTimelineSample
impl Send for QueryTimelineSample
impl Sync for QueryTimelineSample
impl Unpin for QueryTimelineSample
impl UnwindSafe for QueryTimelineSample
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request