pub type ClientResult<T> = Result<T, ClientError>;Expand description
Type alias for the result of client operations.
Aliased Type§
enum ClientResult<T> {
Ok(T),
Err(ClientError),
}pub type ClientResult<T> = Result<T, ClientError>;Type alias for the result of client operations.
enum ClientResult<T> {
Ok(T),
Err(ClientError),
}