pub type StreamItem<E> = Result<Vec<Packet>, E>;
pub enum StreamItem<E> { Ok(Vec<Packet>), Err(E), }
Contains the success value
Contains the error value