pub struct PromotionGateResolver { /* private fields */ }Expand description
Wires gating decisions back to staged promotion commits (§10.2). The runtime notifies synchronously from inside its handle lock; this resolver defers the store work onto the runtime.
Implementations§
Source§impl PromotionGateResolver
impl PromotionGateResolver
pub fn new(engine: Arc<StewardEngine>, handle: Handle) -> Self
Trait Implementations§
Source§impl GatingResolutionObserver for PromotionGateResolver
impl GatingResolutionObserver for PromotionGateResolver
fn on_gating_resolution(&self, notice: &GatingResolutionNotice)
Auto Trait Implementations§
impl !RefUnwindSafe for PromotionGateResolver
impl !UnwindSafe for PromotionGateResolver
impl Freeze for PromotionGateResolver
impl Send for PromotionGateResolver
impl Sync for PromotionGateResolver
impl Unpin for PromotionGateResolver
impl UnsafeUnpin for PromotionGateResolver
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> CoreExecutorTurnFinalizationGuard for Twhere
T: Send,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more