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