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