pub struct PlanExplanation {
pub summary: String,
pub entries: Vec<PlanExplanationEntry>,
}Expand description
Explanation accompanying a selected execution plan.
Fields§
§summary: StringShort description of the selected plan.
entries: Vec<PlanExplanationEntry>Ordered decisions, warnings, and candidate rejections.
Trait Implementations§
Source§impl Clone for PlanExplanation
impl Clone for PlanExplanation
Source§fn clone(&self) -> PlanExplanation
fn clone(&self) -> PlanExplanation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlanExplanation
impl Debug for PlanExplanation
Source§impl<'de> Deserialize<'de> for PlanExplanation
impl<'de> Deserialize<'de> for PlanExplanation
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
impl Eq for PlanExplanation
Source§impl PartialEq for PlanExplanation
impl PartialEq for PlanExplanation
Source§impl Serialize for PlanExplanation
impl Serialize for PlanExplanation
impl StructuralPartialEq for PlanExplanation
Auto Trait Implementations§
impl Freeze for PlanExplanation
impl RefUnwindSafe for PlanExplanation
impl Send for PlanExplanation
impl Sync for PlanExplanation
impl Unpin for PlanExplanation
impl UnsafeUnpin for PlanExplanation
impl UnwindSafe for PlanExplanation
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