pub struct AnalyzeReport {
pub plan: AnalyzePlan,
pub timing: AnalyzeTiming,
pub sources: Vec<AnalyzeSource>,
pub totals: AnalyzeTotals,
}Expand description
The full analyze report for one query — the /analyze response body.
Fields§
§plan: AnalyzePlan§timing: AnalyzeTiming§sources: Vec<AnalyzeSource>§totals: AnalyzeTotalsTrait Implementations§
Source§impl Clone for AnalyzeReport
impl Clone for AnalyzeReport
Source§fn clone(&self) -> AnalyzeReport
fn clone(&self) -> AnalyzeReport
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 AnalyzeReport
impl Debug for AnalyzeReport
Auto Trait Implementations§
impl Freeze for AnalyzeReport
impl RefUnwindSafe for AnalyzeReport
impl Send for AnalyzeReport
impl Sync for AnalyzeReport
impl Unpin for AnalyzeReport
impl UnsafeUnpin for AnalyzeReport
impl UnwindSafe for AnalyzeReport
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