pub type PcapResult<T> = Result<T, PcapError>;
Result type for the pcap/pcapng parsing
enum PcapResult<T> { Ok(T), Err(PcapError), }
Contains the success value
Contains the error value