pub struct EnhancedContextPreservationPlan {
pub base_plan: ContextPreservationPlan,
pub timeout_rate: f64,
pub retry_success_rate: f64,
pub timeout_stats: TimeoutStats,
}
Expand description
Enhanced context preservation plan with timeout detector insights
Fields§
§base_plan: ContextPreservationPlan
§timeout_rate: f64
§retry_success_rate: f64
§timeout_stats: TimeoutStats
Trait Implementations§
Source§impl Clone for EnhancedContextPreservationPlan
impl Clone for EnhancedContextPreservationPlan
Source§fn clone(&self) -> EnhancedContextPreservationPlan
fn clone(&self) -> EnhancedContextPreservationPlan
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 moreAuto Trait Implementations§
impl Freeze for EnhancedContextPreservationPlan
impl RefUnwindSafe for EnhancedContextPreservationPlan
impl Send for EnhancedContextPreservationPlan
impl Sync for EnhancedContextPreservationPlan
impl Unpin for EnhancedContextPreservationPlan
impl UnwindSafe for EnhancedContextPreservationPlan
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