Skip to main content

LostReconnectAuthorityDecision

Enum LostReconnectAuthorityDecision 

Source
pub enum LostReconnectAuthorityDecision {
    Recorded {
        aggregate: ClientParticipantAggregate,
        testimony: LostAuthorityTestimony,
    },
    Refused {
        aggregate: ClientParticipantAggregate,
        reason: LostAuthorityResolutionRefusalReason,
    },
}
Expand description

Complete decision for resolving restored reconnect-authority loss.

This is the sole recovery path for the reconnect-domain testimony minted by validated cold restore (LP-CLIENT-GOAL pieces 3 and 4, r2, 2026-07-18). It takes no fate parameter: reconnect process-fate values are not publicly constructible, so a caller can never terminalize an issued permit or in-progress attempt whose live authority still exists.

Variants§

§

Recorded

The consumed testimony parked the producer without minting a replacement; only a later fresh event authorizes a new real attempt.

Fields

§aggregate: ClientParticipantAggregate

Resulting aggregate parked without timer or replacement authority.

§testimony: LostAuthorityTestimony

Consumed take-once testimony.

§

Refused

No pending testimony existed; the aggregate is unchanged.

Fields

§aggregate: ClientParticipantAggregate

Unchanged aggregate.

§reason: LostAuthorityResolutionRefusalReason

Closed refusal reason.

Trait Implementations§

Source§

impl Debug for LostReconnectAuthorityDecision

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for LostReconnectAuthorityDecision

Source§

impl PartialEq for LostReconnectAuthorityDecision

Source§

fn eq(&self, other: &LostReconnectAuthorityDecision) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for LostReconnectAuthorityDecision

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.