pub struct StreamingQueryProgress {
pub batch_duration: Option<i64>,
pub batch_id: Option<i64>,
pub duration_millis: Option<HashMap<String, i64>>,
pub event_time: Option<HashMap<String, String>>,
pub name: Option<String>,
pub observed_metrics: Option<HashMap<String, String>>,
pub run_id: Option<String>,
pub sink: Option<SinkProgress>,
pub sources: Option<Vec<SourceProgress>>,
pub state_operators: Option<Vec<StateOperatorProgress>>,
pub streaming_query_progress_id: Option<String>,
pub timestamp: 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§
§batch_duration: Option<i64>no description provided
batch_id: Option<i64>no description provided
duration_millis: Option<HashMap<String, i64>>no description provided
event_time: Option<HashMap<String, String>>no description provided
name: Option<String>no description provided
observed_metrics: Option<HashMap<String, String>>no description provided
run_id: Option<String>no description provided
sink: Option<SinkProgress>no description provided
sources: Option<Vec<SourceProgress>>no description provided
state_operators: Option<Vec<StateOperatorProgress>>no description provided
streaming_query_progress_id: Option<String>no description provided
timestamp: Option<String>no description provided
Trait Implementations§
Source§impl Clone for StreamingQueryProgress
impl Clone for StreamingQueryProgress
Source§fn clone(&self) -> StreamingQueryProgress
fn clone(&self) -> StreamingQueryProgress
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 StreamingQueryProgress
impl Debug for StreamingQueryProgress
Source§impl Default for StreamingQueryProgress
impl Default for StreamingQueryProgress
Source§fn default() -> StreamingQueryProgress
fn default() -> StreamingQueryProgress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamingQueryProgress
impl<'de> Deserialize<'de> for StreamingQueryProgress
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 StreamingQueryProgress
impl Serialize for StreamingQueryProgress
impl Part for StreamingQueryProgress
Auto Trait Implementations§
impl Freeze for StreamingQueryProgress
impl RefUnwindSafe for StreamingQueryProgress
impl Send for StreamingQueryProgress
impl Sync for StreamingQueryProgress
impl Unpin for StreamingQueryProgress
impl UnwindSafe for StreamingQueryProgress
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