pub type STTResult<T> = Result<T, STTError>;
Result type for STT operations
pub enum STTResult<T> { Ok(T), Err(STTError), }
Contains the success value
Contains the error value