pub struct StreamingQueryData {
pub end_timestamp: Option<i64>,
pub exception: Option<String>,
pub is_active: Option<bool>,
pub name: Option<String>,
pub run_id: Option<String>,
pub start_timestamp: Option<i64>,
pub streaming_query_id: Option<String>,
}Expand description
Streaming
This type is not used in any activity, and only used as part of another schema.
Fields§
§end_timestamp: Option<i64>no description provided
exception: Option<String>no description provided
is_active: Option<bool>no description provided
name: Option<String>no description provided
run_id: Option<String>no description provided
start_timestamp: Option<i64>no description provided
streaming_query_id: Option<String>no description provided
Trait Implementations§
Source§impl Clone for StreamingQueryData
impl Clone for StreamingQueryData
Source§fn clone(&self) -> StreamingQueryData
fn clone(&self) -> StreamingQueryData
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 StreamingQueryData
impl Debug for StreamingQueryData
Source§impl Default for StreamingQueryData
impl Default for StreamingQueryData
Source§fn default() -> StreamingQueryData
fn default() -> StreamingQueryData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamingQueryData
impl<'de> Deserialize<'de> for StreamingQueryData
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 StreamingQueryData
impl Serialize for StreamingQueryData
impl Part for StreamingQueryData
Auto Trait Implementations§
impl Freeze for StreamingQueryData
impl RefUnwindSafe for StreamingQueryData
impl Send for StreamingQueryData
impl Sync for StreamingQueryData
impl Unpin for StreamingQueryData
impl UnwindSafe for StreamingQueryData
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