pub enum ErrorStrategy {
ContinueAndCollect,
AbortOnError,
Undo,
}Variants§
Trait Implementations§
Source§impl Clone for ErrorStrategy
impl Clone for ErrorStrategy
Source§fn clone(&self) -> ErrorStrategy
fn clone(&self) -> ErrorStrategy
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 ErrorStrategy
Source§impl Debug for ErrorStrategy
impl Debug for ErrorStrategy
Source§impl Default for ErrorStrategy
impl Default for ErrorStrategy
Source§fn default() -> ErrorStrategy
fn default() -> ErrorStrategy
Returns the “default value” for a type. Read more
impl Eq for ErrorStrategy
Source§impl PartialEq for ErrorStrategy
impl PartialEq for ErrorStrategy
impl StructuralPartialEq for ErrorStrategy
Auto Trait Implementations§
impl Freeze for ErrorStrategy
impl RefUnwindSafe for ErrorStrategy
impl Send for ErrorStrategy
impl Sync for ErrorStrategy
impl Unpin for ErrorStrategy
impl UnsafeUnpin for ErrorStrategy
impl UnwindSafe for ErrorStrategy
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