pub struct ErrorPattern {
pub description: String,
pub errortypes: Vec<String>,
pub frequency: usize,
pub common_contexts: Vec<String>,
pub suggestions: Vec<String>,
}
Expand description
Error pattern analysis
Fields§
§description: String
Pattern description
errortypes: Vec<String>
Error types involved in this pattern
frequency: usize
Frequency of this pattern
common_contexts: Vec<String>
Common contexts where this pattern occurs
suggestions: Vec<String>
Suggested actions for this pattern
Trait Implementations§
Source§impl Clone for ErrorPattern
impl Clone for ErrorPattern
Source§fn clone(&self) -> ErrorPattern
fn clone(&self) -> ErrorPattern
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 moreAuto Trait Implementations§
impl Freeze for ErrorPattern
impl RefUnwindSafe for ErrorPattern
impl Send for ErrorPattern
impl Sync for ErrorPattern
impl Unpin for ErrorPattern
impl UnwindSafe for ErrorPattern
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more