pub type IpParseResult<I, T> = Result<T, <I as IpExt>::PacketParseError>;Expand description
Results returned from IP packet parsing functions in the netstack.
Aliased Type§
pub enum IpParseResult<I, T> {
Ok(T),
Err(<I as IpExt>::PacketParseError),
}Variants§
Ok(T)
Contains the success value
Err(<I as IpExt>::PacketParseError)
Contains the error value