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