pub type StdResult<T> = Result<T, StdError>;
Generic result type
enum StdResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value