pub type ProxyResult<T = Response> = Result<T, ProxyError>;
The result type for the proxy contract.
enum ProxyResult<T = Response> { Ok(T), Err(ProxyError), }
Contains the success value
Contains the error value