pub struct RecoveryResult {
pub had_progress: bool,
pub has_remaining_dangling: bool,
}Expand description
Result of a recovery attempt during run_loop’s pre-tick recovery phase.
Fields§
§had_progress: boolWhether any events were written (i.e., recovery made progress).
has_remaining_dangling: boolWhether there are still unrecovered dangling effects after this attempt.
Trait Implementations§
Source§impl Clone for RecoveryResult
impl Clone for RecoveryResult
Source§fn clone(&self) -> RecoveryResult
fn clone(&self) -> RecoveryResult
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 RecoveryResult
impl Debug for RecoveryResult
impl Eq for RecoveryResult
Source§impl PartialEq for RecoveryResult
impl PartialEq for RecoveryResult
Source§fn eq(&self, other: &RecoveryResult) -> bool
fn eq(&self, other: &RecoveryResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecoveryResult
Auto Trait Implementations§
impl Freeze for RecoveryResult
impl RefUnwindSafe for RecoveryResult
impl Send for RecoveryResult
impl Sync for RecoveryResult
impl Unpin for RecoveryResult
impl UnsafeUnpin for RecoveryResult
impl UnwindSafe for RecoveryResult
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