pub type Result<T, E = IpStackError> = Result<T, E>;Expand description
A specialized Result type for IP stack operations.
This type is used throughout the IP stack for any operation which may produce an error.
Aliased Type§
pub enum Result<T, E = IpStackError> {
Ok(T),
Err(E),
}