pub struct PlannerDecision {
pub export_mode: ExportMode,
pub reasoning: DecisionReason,
pub graph_stable: bool,
pub wal_state: WalAnalysis,
}Expand description
Planner decision result with reasoning
Fields§
§export_mode: ExportModeChosen export mode
reasoning: DecisionReasonReasoning for decision
graph_stable: boolWhether graph is in stable state
wal_state: WalAnalysisWAL state analysis
Trait Implementations§
Source§impl Clone for PlannerDecision
impl Clone for PlannerDecision
Source§fn clone(&self) -> PlannerDecision
fn clone(&self) -> PlannerDecision
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 PlannerDecision
impl Debug for PlannerDecision
Source§impl PartialEq for PlannerDecision
impl PartialEq for PlannerDecision
impl Eq for PlannerDecision
impl StructuralPartialEq for PlannerDecision
Auto Trait Implementations§
impl Freeze for PlannerDecision
impl RefUnwindSafe for PlannerDecision
impl Send for PlannerDecision
impl Sync for PlannerDecision
impl Unpin for PlannerDecision
impl UnwindSafe for PlannerDecision
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