pub struct OutputMetrics {
pub bytes_written: Option<i64>,
pub records_written: Option<i64>,
}Expand description
Metrics about the data written by the task.
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 OutputMetrics
impl Clone for OutputMetrics
Source§fn clone(&self) -> OutputMetrics
fn clone(&self) -> OutputMetrics
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 OutputMetrics
impl Debug for OutputMetrics
Source§impl Default for OutputMetrics
impl Default for OutputMetrics
Source§fn default() -> OutputMetrics
fn default() -> OutputMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputMetrics
impl<'de> Deserialize<'de> for OutputMetrics
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 OutputMetrics
impl Serialize for OutputMetrics
impl Part for OutputMetrics
Auto Trait Implementations§
impl Freeze for OutputMetrics
impl RefUnwindSafe for OutputMetrics
impl Send for OutputMetrics
impl Sync for OutputMetrics
impl Unpin for OutputMetrics
impl UnwindSafe for OutputMetrics
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