pub struct PlannerOutput {
pub events: Vec<KernelEvent>,
pub proposed_plan: Option<ExecutionPlan>,
}Fields§
§events: Vec<KernelEvent>§proposed_plan: Option<ExecutionPlan>Trait Implementations§
Source§impl Clone for PlannerOutput
impl Clone for PlannerOutput
Source§fn clone(&self) -> PlannerOutput
fn clone(&self) -> PlannerOutput
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 PlannerOutput
impl Debug for PlannerOutput
Source§impl Default for PlannerOutput
impl Default for PlannerOutput
Source§fn default() -> PlannerOutput
fn default() -> PlannerOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PlannerOutput
impl PartialEq for PlannerOutput
Source§fn eq(&self, other: &PlannerOutput) -> bool
fn eq(&self, other: &PlannerOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlannerOutput
Auto Trait Implementations§
impl Freeze for PlannerOutput
impl RefUnwindSafe for PlannerOutput
impl Send for PlannerOutput
impl Sync for PlannerOutput
impl Unpin for PlannerOutput
impl UnsafeUnpin for PlannerOutput
impl UnwindSafe for PlannerOutput
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