pub type Result<T> = Result<T, X402Error>;
Result type alias for x402 operations
pub enum Result<T> { Ok(T), Err(X402Error), }
Contains the success value
Contains the error value