pub type RadosResult<T> = Result<T, RadosError>;
enum RadosResult<T> { Ok(T), Err(RadosError), }
Contains the success value
Contains the error value