pub enum ReportLevel {
TimeOnly,
WithPlan,
StageInfo,
}Variants§
TimeOnly
Report only the time taken in each search/apply, merge, rebuild phase.
WithPlan
Report ReportLevel::TimeOnly and query plan for each rule
StageInfo
Report ReportLevel::WithPlan and the detailed statistics at each stage of the query plan.
Trait Implementations§
Source§impl Clone for ReportLevel
impl Clone for ReportLevel
Source§fn clone(&self) -> ReportLevel
fn clone(&self) -> ReportLevel
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 ReportLevel
impl Debug for ReportLevel
Source§impl Default for ReportLevel
impl Default for ReportLevel
Source§fn default() -> ReportLevel
fn default() -> ReportLevel
Returns the “default value” for a type. Read more
Source§impl Serialize for ReportLevel
impl Serialize for ReportLevel
Source§impl ValueEnum for ReportLevel
impl ValueEnum for ReportLevel
impl Copy for ReportLevel
Auto Trait Implementations§
impl Freeze for ReportLevel
impl RefUnwindSafe for ReportLevel
impl Send for ReportLevel
impl Sync for ReportLevel
impl Unpin for ReportLevel
impl UnwindSafe for ReportLevel
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