libcasr 2.13.0

Collect crash reports, triage, and estimate severity.
Documentation
1
2
3
4
5
6
7
8
//! Provides `Exception` trait.
use crate::execution_class::ExecutionClass;

/// Exception processing trait.
pub trait Exception {
    /// Extract exception info and return it as a `ExecutionClass` struct.
    fn parse_exception(stream: &str) -> Option<ExecutionClass>;
}