pub type StResult<T> = Result<T, Error>;
A specialized result type for the patina_stacktrace crate.
pub enum StResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value