pub struct QueryExecution {
pub execution_id: String,
pub timestamp: DateTime<Utc>,
pub session: SessionIdentity,
pub statement: String,
pub queries: Vec<Query>,
pub query_family: QueryFamilyIdentity,
pub duration_ms: Option<f64>,
pub evidence: Vec<SourceReference>,
pub confidence: CorrelationConfidence,
}Expand description
A correlated query execution suitable for analytics and findings.
Fields§
§execution_id: String§timestamp: DateTime<Utc>§session: SessionIdentity§statement: String§queries: Vec<Query>§query_family: QueryFamilyIdentity§duration_ms: Option<f64>§evidence: Vec<SourceReference>§confidence: CorrelationConfidenceTrait Implementations§
Source§impl Clone for QueryExecution
impl Clone for QueryExecution
Source§fn clone(&self) -> QueryExecution
fn clone(&self) -> QueryExecution
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 QueryExecution
impl Debug for QueryExecution
Source§impl<'de> Deserialize<'de> for QueryExecution
impl<'de> Deserialize<'de> for QueryExecution
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
Auto Trait Implementations§
impl Freeze for QueryExecution
impl RefUnwindSafe for QueryExecution
impl Send for QueryExecution
impl Sync for QueryExecution
impl Unpin for QueryExecution
impl UnsafeUnpin for QueryExecution
impl UnwindSafe for QueryExecution
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