pub type AnalysisResult<T> = Result<T>;
Result type for string analysis operations
pub enum AnalysisResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value