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