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