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