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
sourceimpl Clone for QueryTimelineSample
impl Clone for QueryTimelineSample
sourcefn clone(&self) -> QueryTimelineSample
fn clone(&self) -> QueryTimelineSample
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for QueryTimelineSample
impl Debug for QueryTimelineSample
sourceimpl Default for QueryTimelineSample
impl Default for QueryTimelineSample
sourcefn default() -> QueryTimelineSample
fn default() -> QueryTimelineSample
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for QueryTimelineSample
impl<'de> Deserialize<'de> for QueryTimelineSample
sourcefn 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
sourceimpl Serialize for QueryTimelineSample
impl Serialize for QueryTimelineSample
Auto Trait Implementations
impl RefUnwindSafe for QueryTimelineSample
impl Send for QueryTimelineSample
impl Sync for QueryTimelineSample
impl Unpin for QueryTimelineSample
impl UnwindSafe for QueryTimelineSample
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more