pub struct InterventionForkRequest<'a> {
pub discovery: &'a InterventionDiscovery,
pub session_id: &'a str,
pub replacement: Option<InterventionPlan>,
pub estimator: Arc<dyn InterventionEstimator>,
}Expand description
Shared re-admission of inherited or prospectively replaced interventions.
Fields§
§discovery: &'a InterventionDiscoveryActual child’s backend/source/target discovery.
session_id: &'a strFresh child facade session identity, never the source admission identity.
replacement: Option<InterventionPlan>None inherits the original operations. Some replaces future operations; an empty plan removes them. Earlier native state is not recomputed.
estimator: Arc<dyn InterventionEstimator>Child’s current side-effect-free native facts. Not part of the checkpoint.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for InterventionForkRequest<'a>
impl<'a> !UnwindSafe for InterventionForkRequest<'a>
impl<'a> Freeze for InterventionForkRequest<'a>
impl<'a> Send for InterventionForkRequest<'a>
impl<'a> Sync for InterventionForkRequest<'a>
impl<'a> Unpin for InterventionForkRequest<'a>
impl<'a> UnsafeUnpin for InterventionForkRequest<'a>
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