pub struct IncrementalResultStats {
pub disabled_reason: Option<String>,
pub result_set_last_modify_time: Option<DateTime<Utc>>,
pub result_set_last_replace_time: Option<DateTime<Utc>>,
}Expand description
Statistics related to Incremental Query Results. Populated as part of JobStatistics2. This feature is not yet available.
This type is not used in any activity, and only used as part of another schema.
Fields§
§disabled_reason: Option<String>Reason why incremental query results are/were not written by the query.
result_set_last_modify_time: Option<DateTime<Utc>>The time at which the result table’s contents were modified. May be absent if no results have been written or the query has completed.
result_set_last_replace_time: Option<DateTime<Utc>>The time at which the result table’s contents were completely replaced. May be absent if no results have been written or the query has completed.
Trait Implementations§
Source§impl Clone for IncrementalResultStats
impl Clone for IncrementalResultStats
Source§fn clone(&self) -> IncrementalResultStats
fn clone(&self) -> IncrementalResultStats
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 IncrementalResultStats
impl Debug for IncrementalResultStats
Source§impl Default for IncrementalResultStats
impl Default for IncrementalResultStats
Source§fn default() -> IncrementalResultStats
fn default() -> IncrementalResultStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IncrementalResultStats
impl<'de> Deserialize<'de> for IncrementalResultStats
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 IncrementalResultStats
impl Serialize for IncrementalResultStats
impl Part for IncrementalResultStats
Auto Trait Implementations§
impl Freeze for IncrementalResultStats
impl RefUnwindSafe for IncrementalResultStats
impl Send for IncrementalResultStats
impl Sync for IncrementalResultStats
impl Unpin for IncrementalResultStats
impl UnwindSafe for IncrementalResultStats
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