pub struct CorrelationAnalysis {
pub subqueries: Vec<SubqueryInfo>,
pub total_count: usize,
pub correlated_count: usize,
pub non_correlated_count: usize,
}Expand description
Analysis results for a query
Fields§
§subqueries: Vec<SubqueryInfo>All subqueries found in the query
total_count: usizeTotal count of subqueries
Count of correlated subqueries
Count of non-correlated subqueries
Implementations§
Trait Implementations§
Source§impl Debug for CorrelationAnalysis
impl Debug for CorrelationAnalysis
Source§impl Default for CorrelationAnalysis
impl Default for CorrelationAnalysis
Source§fn default() -> CorrelationAnalysis
fn default() -> CorrelationAnalysis
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CorrelationAnalysis
impl RefUnwindSafe for CorrelationAnalysis
impl Send for CorrelationAnalysis
impl Sync for CorrelationAnalysis
impl Unpin for CorrelationAnalysis
impl UnwindSafe for CorrelationAnalysis
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more