pub struct StageInputMetrics {
pub bytes_read: Option<i64>,
pub records_read: Option<i64>,
}Expand description
Metrics about the input read by the stage.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bytes_read: Option<i64>no description provided
records_read: Option<i64>no description provided
Trait Implementations§
Source§impl Clone for StageInputMetrics
impl Clone for StageInputMetrics
Source§fn clone(&self) -> StageInputMetrics
fn clone(&self) -> StageInputMetrics
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 StageInputMetrics
impl Debug for StageInputMetrics
Source§impl Default for StageInputMetrics
impl Default for StageInputMetrics
Source§fn default() -> StageInputMetrics
fn default() -> StageInputMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StageInputMetrics
impl<'de> Deserialize<'de> for StageInputMetrics
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
Source§impl Serialize for StageInputMetrics
impl Serialize for StageInputMetrics
impl Part for StageInputMetrics
Auto Trait Implementations§
impl Freeze for StageInputMetrics
impl RefUnwindSafe for StageInputMetrics
impl Send for StageInputMetrics
impl Sync for StageInputMetrics
impl Unpin for StageInputMetrics
impl UnwindSafe for StageInputMetrics
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