pub enum ErrorHandlingStrategy {
FixRetry,
Tolerant,
Throw,
Ignore,
Terminate,
}Variants§
Trait Implementations§
Source§impl From<ErrStrategy> for ErrorHandlingStrategy
impl From<ErrStrategy> for ErrorHandlingStrategy
Source§fn from(value: ErrStrategy) -> Self
fn from(value: ErrStrategy) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ErrorHandlingStrategy
impl RefUnwindSafe for ErrorHandlingStrategy
impl Send for ErrorHandlingStrategy
impl Sync for ErrorHandlingStrategy
impl Unpin for ErrorHandlingStrategy
impl UnwindSafe for ErrorHandlingStrategy
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