pub enum DetachReplayTerminal {
DetachCommitted(DetachCommitted),
DetachInProgress(DetachInProgress),
TerminalizedDetachCell(TerminalizedDetachCell),
}Expand description
Typed terminal detach replay outcomes retained without projection.
Variants§
DetachCommitted(DetachCommitted)
Exact committed detach result.
DetachInProgress(DetachInProgress)
Exact competing-pending result.
TerminalizedDetachCell(TerminalizedDetachCell)
Exact terminalized old-cell authority result.
Trait Implementations§
Source§impl Clone for DetachReplayTerminal
impl Clone for DetachReplayTerminal
Source§fn clone(&self) -> DetachReplayTerminal
fn clone(&self) -> DetachReplayTerminal
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 DetachReplayTerminal
impl Debug for DetachReplayTerminal
impl Eq for DetachReplayTerminal
Source§impl PartialEq for DetachReplayTerminal
impl PartialEq for DetachReplayTerminal
impl StructuralPartialEq for DetachReplayTerminal
Auto Trait Implementations§
impl Freeze for DetachReplayTerminal
impl RefUnwindSafe for DetachReplayTerminal
impl Send for DetachReplayTerminal
impl Sync for DetachReplayTerminal
impl Unpin for DetachReplayTerminal
impl UnsafeUnpin for DetachReplayTerminal
impl UnwindSafe for DetachReplayTerminal
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