[][src]Type Definition grammers_mtsender::RequestResult

type RequestResult<R> = Result<Result<R, RPCError>>;

The invocation might fail due to network problems, in which case the outermost result represents failure.

If the request is both sent and received successfully, then the request itself was understood by the server, but it could not be executed. This is represented by the innermost result.