pub type StateResult<T> = Result<T>;
A type alias for Result that uses anyhow::Error as the error type.
pub enum StateResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value