pub enum ClientInboundRefusalReason {
AlreadyDead,
ForeignResponse,
DelayedResponse,
AmbiguousResponse,
MissingResponseAuthority,
LostAuthorityPending,
}Expand description
Closed refusal classes for inbound semantic values.
Variants§
AlreadyDead
A durable Leave already terminalized the local participant.
ForeignResponse
The value names another operation or participant identity.
DelayedResponse
The value is absent an expectation or belongs to an older request.
AmbiguousResponse
Wire identity is insufficient to assign this value to one expected operation.
MissingResponseAuthority
An expected-operation response was presented without its one-use send correlation.
LostAuthorityPending
A restore already testified the issued send authority destroyed; only the pending testimony can resolve the operation (r2, 2026-07-18).
Trait Implementations§
Source§impl Clone for ClientInboundRefusalReason
impl Clone for ClientInboundRefusalReason
Source§fn clone(&self) -> ClientInboundRefusalReason
fn clone(&self) -> ClientInboundRefusalReason
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 ClientInboundRefusalReason
Source§impl Debug for ClientInboundRefusalReason
impl Debug for ClientInboundRefusalReason
impl Eq for ClientInboundRefusalReason
impl StructuralPartialEq for ClientInboundRefusalReason
Auto Trait Implementations§
impl Freeze for ClientInboundRefusalReason
impl RefUnwindSafe for ClientInboundRefusalReason
impl Send for ClientInboundRefusalReason
impl Sync for ClientInboundRefusalReason
impl Unpin for ClientInboundRefusalReason
impl UnsafeUnpin for ClientInboundRefusalReason
impl UnwindSafe for ClientInboundRefusalReason
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