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