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