Type Alias ProxyResult

Source
pub type ProxyResult<T = Response> = Result<T, ProxyError>;
Expand description

The result type for the proxy contract.

Aliased Type§

enum ProxyResult<T = Response> {
    Ok(T),
    Err(ProxyError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ProxyError)

Contains the error value