pub enum LostAuthorityKind {
IssuedOperationCorrelation,
DetachTransportAttempt,
ReconnectPermit,
ReconnectAttempt,
}Expand description
Closed description of which live process-local authority was destroyed.
The kind is descriptive only: no caller-suppliable kind value gates any
authority transition (LP-CLIENT-GOAL piece 4, r2, 2026-07-18).
Variants§
IssuedOperationCorrelation
An issued operation’s one-use response correlation did not survive the process.
DetachTransportAttempt
An in-flight detach transport attempt did not survive the process.
ReconnectPermit
An issued reconnect attempt permit did not survive the process.
ReconnectAttempt
An in-progress reconnect attempt did not survive the process.
Trait Implementations§
Source§impl Clone for LostAuthorityKind
impl Clone for LostAuthorityKind
Source§fn clone(&self) -> LostAuthorityKind
fn clone(&self) -> LostAuthorityKind
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 moreimpl Copy for LostAuthorityKind
Source§impl Debug for LostAuthorityKind
impl Debug for LostAuthorityKind
impl Eq for LostAuthorityKind
Source§impl PartialEq for LostAuthorityKind
impl PartialEq for LostAuthorityKind
impl StructuralPartialEq for LostAuthorityKind
Auto Trait Implementations§
impl Freeze for LostAuthorityKind
impl RefUnwindSafe for LostAuthorityKind
impl Send for LostAuthorityKind
impl Sync for LostAuthorityKind
impl Unpin for LostAuthorityKind
impl UnsafeUnpin for LostAuthorityKind
impl UnwindSafe for LostAuthorityKind
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