pub enum CodeAgentError {
Show 47 variants
Core(KowalskiError),
Parser(String),
Analyzer(String),
Refactoring(String),
Documentation(String),
TestGeneration(String),
DependencyAnalysis(String),
SecurityAnalysis(String),
PerformanceAnalysis(String),
CodeMetrics(String),
DuplicationDetection(String),
ComplexityAnalysis(String),
CoverageAnalysis(String),
StyleChecking(String),
Linting(String),
TypeChecking(String),
StaticAnalysis(String),
DynamicAnalysis(String),
Profiling(String),
Debugging(String),
Tracing(String),
Logging(String),
Monitoring(String),
MetricsCollection(String),
Reporting(String),
Visualization(String),
DocumentationGeneration(String),
TestGenerationError(String),
RefactoringError(String),
Optimization(String),
Security(String),
Performance(String),
Quality(String),
Maintainability(String),
Reliability(String),
Portability(String),
Reusability(String),
Testability(String),
Understandability(String),
Modifiability(String),
Efficiency(String),
Effectiveness(String),
Correctness(String),
Completeness(String),
Consistency(String),
Traceability(String),
Verifiability(String),
}Variants§
Core(KowalskiError)
Parser(String)
Analyzer(String)
Refactoring(String)
Documentation(String)
TestGeneration(String)
DependencyAnalysis(String)
SecurityAnalysis(String)
PerformanceAnalysis(String)
CodeMetrics(String)
DuplicationDetection(String)
ComplexityAnalysis(String)
CoverageAnalysis(String)
StyleChecking(String)
Linting(String)
TypeChecking(String)
StaticAnalysis(String)
DynamicAnalysis(String)
Profiling(String)
Debugging(String)
Tracing(String)
Logging(String)
Monitoring(String)
MetricsCollection(String)
Reporting(String)
Visualization(String)
DocumentationGeneration(String)
TestGenerationError(String)
RefactoringError(String)
Optimization(String)
Security(String)
Performance(String)
Quality(String)
Maintainability(String)
Reliability(String)
Portability(String)
Reusability(String)
Testability(String)
Understandability(String)
Modifiability(String)
Efficiency(String)
Effectiveness(String)
Correctness(String)
Completeness(String)
Consistency(String)
Traceability(String)
Verifiability(String)
Trait Implementations§
Source§impl Debug for CodeAgentError
impl Debug for CodeAgentError
Source§impl Display for CodeAgentError
impl Display for CodeAgentError
Source§impl Error for CodeAgentError
impl Error for CodeAgentError
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<KowalskiError> for CodeAgentError
impl From<KowalskiError> for CodeAgentError
Source§fn from(source: KowalskiError) -> Self
fn from(source: KowalskiError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CodeAgentError
impl !RefUnwindSafe for CodeAgentError
impl Send for CodeAgentError
impl Sync for CodeAgentError
impl Unpin for CodeAgentError
impl !UnwindSafe for CodeAgentError
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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