pub type CasResult<T> = Result<T, CasError>;
The result type returned by all fallible cas-lib operations.
cas-lib
pub enum CasResult<T> { Ok(T), Err(CasError), }
Contains the success value
Contains the error value