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