pub type CResult<T> = Result<T, ClientError>;Expand description
Simple frontend result type.
Aliased Type§
pub enum CResult<T> {
Ok(T),
Err(ClientError),
}pub type CResult<T> = Result<T, ClientError>;Simple frontend result type.
pub enum CResult<T> {
Ok(T),
Err(ClientError),
}