pub struct ProfileOp {Show 21 fields
pub op: String,
pub phase: String,
pub id: u32,
pub op_index: u32,
pub input_rows: u64,
pub rows: u64,
pub time_ns: u64,
pub cpu_time_ns: u64,
pub bytes_out: u64,
pub bytes_alloc: u64,
pub estimate_bytes: u64,
pub estimate_vs_actual: u64,
pub percent_peak: u64,
pub percent_net: u64,
pub cumulative_time_ns: u64,
pub freed_bytes: u64,
pub net_after_op: u64,
pub error_bytes: u64,
pub error_abs_pct: u64,
pub index_name: String,
pub selectivity_est: f64,
}Fields§
§op: String§phase: String§id: u32§op_index: u32§input_rows: u64§rows: u64§time_ns: u64§cpu_time_ns: u64§bytes_out: u64§bytes_alloc: u64§estimate_bytes: u64§estimate_vs_actual: u64§percent_peak: u64§percent_net: u64§cumulative_time_ns: u64§freed_bytes: u64§net_after_op: u64§error_bytes: u64§error_abs_pct: u64§index_name: String§selectivity_est: f64Trait Implementations§
Source§impl Message for ProfileOp
impl Message for ProfileOp
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.impl StructuralPartialEq for ProfileOp
Auto Trait Implementations§
impl Freeze for ProfileOp
impl RefUnwindSafe for ProfileOp
impl Send for ProfileOp
impl Sync for ProfileOp
impl Unpin for ProfileOp
impl UnwindSafe for ProfileOp
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§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