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