pub struct FallbackExceptionGroup {
pub message: String,
pub errors: Vec<String>,
}Expand description
Group of errors from fallback attempts.
Fields§
§message: StringMessage describing the group.
errors: Vec<String>Individual errors.
Implementations§
Trait Implementations§
Source§impl Clone for FallbackExceptionGroup
impl Clone for FallbackExceptionGroup
Source§fn clone(&self) -> FallbackExceptionGroup
fn clone(&self) -> FallbackExceptionGroup
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 FallbackExceptionGroup
impl Debug for FallbackExceptionGroup
Source§impl Display for FallbackExceptionGroup
impl Display for FallbackExceptionGroup
Source§impl Error for FallbackExceptionGroup
impl Error for FallbackExceptionGroup
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<FallbackExceptionGroup> for SerdesAiError
impl From<FallbackExceptionGroup> for SerdesAiError
Source§fn from(source: FallbackExceptionGroup) -> Self
fn from(source: FallbackExceptionGroup) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FallbackExceptionGroup
impl RefUnwindSafe for FallbackExceptionGroup
impl Send for FallbackExceptionGroup
impl Sync for FallbackExceptionGroup
impl Unpin for FallbackExceptionGroup
impl UnwindSafe for FallbackExceptionGroup
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