pub enum ProviderOutcome {
Completed(ProviderCompleted),
ContextOverflow(ProviderContextOverflow),
}Expand description
A provider call that reached the vendor and came back with something the kernel can reason
about. now_ms is gone (DEC-2): the historical field fed the governance rate limiter directly
and changed the byte fingerprint of every redelivery, which made idempotent replay unreachable
on the highest-frequency path in the system.
Variants§
Completed(ProviderCompleted)
ContextOverflow(ProviderContextOverflow)
A semantic outcome, not a transport failure: the kernel compacts and re-emits a provider effect. Classifying it as a failure is what used to collapse a recoverable overflow into an unrecoverable one.
Trait Implementations§
Source§impl Clone for ProviderOutcome
impl Clone for ProviderOutcome
Source§fn clone(&self) -> ProviderOutcome
fn clone(&self) -> ProviderOutcome
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 ProviderOutcome
impl Debug for ProviderOutcome
Source§impl<'de> Deserialize<'de> for ProviderOutcome
impl<'de> Deserialize<'de> for ProviderOutcome
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProviderOutcome
impl PartialEq for ProviderOutcome
Source§impl Serialize for ProviderOutcome
impl Serialize for ProviderOutcome
impl StructuralPartialEq for ProviderOutcome
Auto Trait Implementations§
impl Freeze for ProviderOutcome
impl RefUnwindSafe for ProviderOutcome
impl Send for ProviderOutcome
impl Sync for ProviderOutcome
impl Unpin for ProviderOutcome
impl UnsafeUnpin for ProviderOutcome
impl UnwindSafe for ProviderOutcome
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