pub struct DiagnoseResult {
pub provider_name: String,
pub total_files: usize,
pub successful: usize,
pub failures: HashMap<FailureType, Vec<FailureExample>>,
}Expand description
Result of diagnosing log file parsing health for a provider.
Contains success/failure statistics and categorized failure examples for identifying systematic parsing issues.
Fields§
§provider_name: StringProvider being diagnosed (claude, codex, gemini).
total_files: usizeTotal number of log files checked.
successful: usizeNumber of files successfully parsed.
failures: HashMap<FailureType, Vec<FailureExample>>Failed files grouped by failure type.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiagnoseResult
impl RefUnwindSafe for DiagnoseResult
impl Send for DiagnoseResult
impl Sync for DiagnoseResult
impl Unpin for DiagnoseResult
impl UnwindSafe for DiagnoseResult
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