pub struct ErrorState {
pub recoverable: bool,
pub error_category: String,
pub confidence: f64,
pub similar_failures: u32,
}Expand description
Final error state classification
Fields§
§recoverable: bool§error_category: String§confidence: f64§similar_failures: u32Trait Implementations§
Source§impl Clone for ErrorState
impl Clone for ErrorState
Source§fn clone(&self) -> ErrorState
fn clone(&self) -> ErrorState
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 ErrorState
impl Debug for ErrorState
Source§impl<'de> Deserialize<'de> for ErrorState
impl<'de> Deserialize<'de> for ErrorState
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
Auto Trait Implementations§
impl Freeze for ErrorState
impl RefUnwindSafe for ErrorState
impl Send for ErrorState
impl Sync for ErrorState
impl Unpin for ErrorState
impl UnsafeUnpin for ErrorState
impl UnwindSafe for ErrorState
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