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