type TonicResult<T> = Result<T, Status>;
enum TonicResult<T> { Ok(T), Err(Status), }
Contains the success value
Contains the error value