pub struct QueryPlan {
pub qkey: QKey,
pub estimated_cost: f64,
pub use_path_sig: bool,
pub use_class_sig: bool,
pub trace_optimized: bool,
pub manifest_cached: bool,
}Expand description
Query plan with optimization hints
Fields§
§qkey: QKey§estimated_cost: f64§use_path_sig: bool§use_class_sig: bool§trace_optimized: bool§manifest_cached: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QueryPlan
impl RefUnwindSafe for QueryPlan
impl Send for QueryPlan
impl Sync for QueryPlan
impl Unpin for QueryPlan
impl UnwindSafe for QueryPlan
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