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