pub type BorrowedRpcResult<'a, E> = RpcResult<&'a RawValue, E, &'a RawValue>;
Expand description
A partially deserialized RpcResult
, borrowing from the deserializer.
Aliased Type§
enum BorrowedRpcResult<'a, E> {
Ok(&'a RawValue),
Err(RpcError<E, &'a RawValue>),
}