pub struct PaneExecutionDecision {
pub strategy: PaneMemoryStrategy,
pub reason: PaneStrategyReason,
pub forced: bool,
pub profile: PaneWorkloadProfile,
pub retention: PaneRetentionPolicy,
pub log: String,
}Expand description
A deterministic, auditable strategy-selection decision.
Fields§
§strategy: PaneMemoryStrategyThe selected execution strategy.
reason: PaneStrategyReasonWhy it was selected.
forced: boolWhether an operator override produced this decision.
profile: PaneWorkloadProfileThe workload profile the decision was made against.
retention: PaneRetentionPolicyThe retention policy to apply alongside the selected strategy.
log: StringHuman-readable one-line decision trace.
Trait Implementations§
Source§impl Clone for PaneExecutionDecision
impl Clone for PaneExecutionDecision
Source§fn clone(&self) -> PaneExecutionDecision
fn clone(&self) -> PaneExecutionDecision
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 PaneExecutionDecision
impl Debug for PaneExecutionDecision
Source§impl PartialEq for PaneExecutionDecision
impl PartialEq for PaneExecutionDecision
Source§fn eq(&self, other: &PaneExecutionDecision) -> bool
fn eq(&self, other: &PaneExecutionDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PaneExecutionDecision
impl Serialize for PaneExecutionDecision
impl StructuralPartialEq for PaneExecutionDecision
Auto Trait Implementations§
impl Freeze for PaneExecutionDecision
impl RefUnwindSafe for PaneExecutionDecision
impl Send for PaneExecutionDecision
impl Sync for PaneExecutionDecision
impl Unpin for PaneExecutionDecision
impl UnsafeUnpin for PaneExecutionDecision
impl UnwindSafe for PaneExecutionDecision
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