pub enum RecoveredBindingFateTransition {
PendingStorage(PendingRecoveredCursorRelease),
DetachedCursorRelease(RecoveredCursorRelease),
}Expand description
Preserve-or-cover result for cursor-releasing binding fate against OP/PC.
Variants§
PendingStorage(PendingRecoveredCursorRelease)
Storage remains current and carries a latent cursor-release suffix.
DetachedCursorRelease(RecoveredCursorRelease)
The fate floor covered storage and selected cursor release immediately.
Trait Implementations§
impl Eq for RecoveredBindingFateTransition
impl StructuralPartialEq for RecoveredBindingFateTransition
Auto Trait Implementations§
impl Freeze for RecoveredBindingFateTransition
impl RefUnwindSafe for RecoveredBindingFateTransition
impl Send for RecoveredBindingFateTransition
impl Sync for RecoveredBindingFateTransition
impl Unpin for RecoveredBindingFateTransition
impl UnsafeUnpin for RecoveredBindingFateTransition
impl UnwindSafe for RecoveredBindingFateTransition
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