pub enum DurableSaveOutcome {
Nothing,
Completed,
TimedOut,
}Expand description
What became of the durable saves the host asked for.
Variants§
Nothing
Nothing was registered.
Completed
Every registered save finished inside the deadline.
TimedOut
The deadline expired with saves still running. They keep running under a background-work lease, but the host is free to suspend.
Trait Implementations§
Source§impl Clone for DurableSaveOutcome
impl Clone for DurableSaveOutcome
Source§fn clone(&self) -> DurableSaveOutcome
fn clone(&self) -> DurableSaveOutcome
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 DurableSaveOutcome
Source§impl Debug for DurableSaveOutcome
impl Debug for DurableSaveOutcome
impl Eq for DurableSaveOutcome
Source§impl PartialEq for DurableSaveOutcome
impl PartialEq for DurableSaveOutcome
impl StructuralPartialEq for DurableSaveOutcome
Auto Trait Implementations§
impl Freeze for DurableSaveOutcome
impl RefUnwindSafe for DurableSaveOutcome
impl Send for DurableSaveOutcome
impl Sync for DurableSaveOutcome
impl Unpin for DurableSaveOutcome
impl UnsafeUnpin for DurableSaveOutcome
impl UnwindSafe for DurableSaveOutcome
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