pub enum ResumeDecision {
Create,
Skip,
ResumeFrom(u64),
Conflict(String),
}Variants§
Trait Implementations§
Source§impl Clone for ResumeDecision
impl Clone for ResumeDecision
Source§fn clone(&self) -> ResumeDecision
fn clone(&self) -> ResumeDecision
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 ResumeDecision
impl Debug for ResumeDecision
Source§impl PartialEq for ResumeDecision
impl PartialEq for ResumeDecision
Source§fn eq(&self, other: &ResumeDecision) -> bool
fn eq(&self, other: &ResumeDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ResumeDecision
impl StructuralPartialEq for ResumeDecision
Auto Trait Implementations§
impl Freeze for ResumeDecision
impl RefUnwindSafe for ResumeDecision
impl Send for ResumeDecision
impl Sync for ResumeDecision
impl Unpin for ResumeDecision
impl UnsafeUnpin for ResumeDecision
impl UnwindSafe for ResumeDecision
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