pub enum AnalysisError {
BehavioralAnalysis(String),
PolicyVerification(String),
LTLCheck(String),
InvalidInput(String),
Configuration(String),
TemporalAttractor(String),
NeuralSolver(String),
Core(AimdsError),
Internal(String),
}Expand description
Analysis error types
Variants§
BehavioralAnalysis(String)
PolicyVerification(String)
LTLCheck(String)
InvalidInput(String)
Configuration(String)
TemporalAttractor(String)
NeuralSolver(String)
Core(AimdsError)
Internal(String)
Trait Implementations§
Source§impl Debug for AnalysisError
impl Debug for AnalysisError
Source§impl Display for AnalysisError
impl Display for AnalysisError
Source§impl Error for AnalysisError
impl Error for AnalysisError
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<AimdsError> for AnalysisError
impl From<AimdsError> for AnalysisError
Source§fn from(source: AimdsError) -> Self
fn from(source: AimdsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AnalysisError
impl !RefUnwindSafe for AnalysisError
impl Send for AnalysisError
impl Sync for AnalysisError
impl Unpin for AnalysisError
impl !UnwindSafe for AnalysisError
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