pub struct SourceProgress {
pub description: Option<String>,
pub end_offset: Option<String>,
pub input_rows_per_second: Option<f64>,
pub latest_offset: Option<String>,
pub metrics: Option<HashMap<String, String>>,
pub num_input_rows: Option<i64>,
pub processed_rows_per_second: Option<f64>,
pub start_offset: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§description: Option<String>no description provided
end_offset: Option<String>no description provided
input_rows_per_second: Option<f64>no description provided
latest_offset: Option<String>no description provided
metrics: Option<HashMap<String, String>>no description provided
num_input_rows: Option<i64>no description provided
processed_rows_per_second: Option<f64>no description provided
start_offset: Option<String>no description provided
Trait Implementations§
Source§impl Clone for SourceProgress
impl Clone for SourceProgress
Source§fn clone(&self) -> SourceProgress
fn clone(&self) -> SourceProgress
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 SourceProgress
impl Debug for SourceProgress
Source§impl Default for SourceProgress
impl Default for SourceProgress
Source§fn default() -> SourceProgress
fn default() -> SourceProgress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceProgress
impl<'de> Deserialize<'de> for SourceProgress
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 SourceProgress
impl Serialize for SourceProgress
impl Part for SourceProgress
Auto Trait Implementations§
impl Freeze for SourceProgress
impl RefUnwindSafe for SourceProgress
impl Send for SourceProgress
impl Sync for SourceProgress
impl Unpin for SourceProgress
impl UnwindSafe for SourceProgress
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