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