pub enum ResumableAnalysisError {
Analysis(AnalysisError),
Recovered(String),
Artifact(String),
}Variants§
Trait Implementations§
Source§impl Clone for ResumableAnalysisError
impl Clone for ResumableAnalysisError
Source§fn clone(&self) -> ResumableAnalysisError
fn clone(&self) -> ResumableAnalysisError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResumableAnalysisError
impl Debug for ResumableAnalysisError
Source§impl Display for ResumableAnalysisError
impl Display for ResumableAnalysisError
impl Eq for ResumableAnalysisError
Source§impl Error for ResumableAnalysisError
impl Error for ResumableAnalysisError
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<AnalysisError> for ResumableAnalysisError
impl From<AnalysisError> for ResumableAnalysisError
Source§fn from(value: AnalysisError) -> Self
fn from(value: AnalysisError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResumableAnalysisError
impl PartialEq for ResumableAnalysisError
impl StructuralPartialEq for ResumableAnalysisError
Auto Trait Implementations§
impl Freeze for ResumableAnalysisError
impl RefUnwindSafe for ResumableAnalysisError
impl Send for ResumableAnalysisError
impl Sync for ResumableAnalysisError
impl Unpin for ResumableAnalysisError
impl UnsafeUnpin for ResumableAnalysisError
impl UnwindSafe for ResumableAnalysisError
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