pub type IpHeadersLaxFromSliceResult<'a> = (IpHeaders, LaxIpPayloadSlice<'a>, Option<(HeadersSliceError, Layer)>);Expand description
Result type of crate::IpHeaders::from_slice_lax.
The result consists of
.0the successfully parsed IP headers and extensions..1the partial or complete payload after the last successfully parsed ip header or ip extensions..2error why the parsing had to be stopped (filled if there was an error, otherwiseNone).