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