pub enum ErrorHandlingStrategy {
FailFast,
UseErrorBoundaries,
FallbackContent,
LogOnly,
}
Variants§
Trait Implementations§
Source§impl Clone for ErrorHandlingStrategy
impl Clone for ErrorHandlingStrategy
Source§fn clone(&self) -> ErrorHandlingStrategy
fn clone(&self) -> ErrorHandlingStrategy
Returns a duplicate of the value. Read more
1.0.0 · 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 ErrorHandlingStrategy
impl Debug for ErrorHandlingStrategy
Source§impl<'de> Deserialize<'de> for ErrorHandlingStrategy
impl<'de> Deserialize<'de> for ErrorHandlingStrategy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ErrorHandlingStrategy
impl PartialEq for ErrorHandlingStrategy
Source§impl Serialize for ErrorHandlingStrategy
impl Serialize for ErrorHandlingStrategy
impl StructuralPartialEq for ErrorHandlingStrategy
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