pub enum DistributedMetricsFormat {
Aggregated,
PerTask,
}Expand description
Format to use when displaying metrics for a distributed plan.
Variants§
Aggregated
Metrics are aggregated across all tasks. ex. a output_rows=X represents the output rows for all tasks.
PerTask
Metrics are labeled with their task id and displayed per task. ex. output_rows is shown as
output_rows={0:.., 1:..}, one entry per task.
Trait Implementations§
Source§impl Clone for DistributedMetricsFormat
impl Clone for DistributedMetricsFormat
Source§fn clone(&self) -> DistributedMetricsFormat
fn clone(&self) -> DistributedMetricsFormat
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 moreimpl Copy for DistributedMetricsFormat
Source§impl Debug for DistributedMetricsFormat
impl Debug for DistributedMetricsFormat
impl Eq for DistributedMetricsFormat
Source§impl PartialEq for DistributedMetricsFormat
impl PartialEq for DistributedMetricsFormat
impl StructuralPartialEq for DistributedMetricsFormat
Auto Trait Implementations§
impl Freeze for DistributedMetricsFormat
impl RefUnwindSafe for DistributedMetricsFormat
impl Send for DistributedMetricsFormat
impl Sync for DistributedMetricsFormat
impl Unpin for DistributedMetricsFormat
impl UnsafeUnpin for DistributedMetricsFormat
impl UnwindSafe for DistributedMetricsFormat
Blanket Implementations§
impl<T> Allocation for T
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§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