pub enum CursorFateSuccessor {
DetachedCredentialRecovery(DetachedCredentialRecovery),
DetachedCursorRelease(DetachedCursorRelease),
}Expand description
Closed cursor-fate result taxonomy retained for API compatibility.
ParticipantCursorProgress::binding_fate produces only the marker-backed
recovery arm. Executable cursor release is instead installed through
OrdinaryBindingFate or RecoveredBindingFate, both of which carry the
required predecessor authority.
Variants§
DetachedCredentialRecovery(DetachedCredentialRecovery)
Marker-backed state becomes fenced detached recovery.
DetachedCursorRelease(DetachedCursorRelease)
Reserved cursor-release taxonomy arm; raw continuous fate cannot produce it.
Implementations§
Source§impl CursorFateSuccessor
impl CursorFateSuccessor
Sourcepub const fn into_stored_edge(self) -> StoredEdge
pub const fn into_stored_edge(self) -> StoredEdge
Converts the derived fate into its stored edge.
Trait Implementations§
Source§impl Clone for CursorFateSuccessor
impl Clone for CursorFateSuccessor
Source§fn clone(&self) -> CursorFateSuccessor
fn clone(&self) -> CursorFateSuccessor
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 CursorFateSuccessor
Source§impl Debug for CursorFateSuccessor
impl Debug for CursorFateSuccessor
impl Eq for CursorFateSuccessor
Source§impl PartialEq for CursorFateSuccessor
impl PartialEq for CursorFateSuccessor
impl StructuralPartialEq for CursorFateSuccessor
Auto Trait Implementations§
impl Freeze for CursorFateSuccessor
impl RefUnwindSafe for CursorFateSuccessor
impl Send for CursorFateSuccessor
impl Sync for CursorFateSuccessor
impl Unpin for CursorFateSuccessor
impl UnsafeUnpin for CursorFateSuccessor
impl UnwindSafe for CursorFateSuccessor
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