axum_jrpc

Type Alias JrpcResult

Source
pub type JrpcResult = Result<JsonRpcResponse, JsonRpcResponse>;
Expand description

Hack until try_trait_v2 is not stabilized

Aliased Type§

enum JrpcResult {
    Ok(JsonRpcResponse),
    Err(JsonRpcResponse),
}

Variants§

§1.0.0

Ok(JsonRpcResponse)

Contains the success value

§1.0.0

Err(JsonRpcResponse)

Contains the error value