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