pub type IpParseResult<I, T> = Result<T, IpParseError<I>>;Expand description
Results returned from IP packet parsing functions in the netstack.
Aliased Type§
pub enum IpParseResult<I, T> {
Ok(T),
Err(IpParseError<I>),
}pub type IpParseResult<I, T> = Result<T, IpParseError<I>>;Results returned from IP packet parsing functions in the netstack.
pub enum IpParseResult<I, T> {
Ok(T),
Err(IpParseError<I>),
}