netaddr2 0.5.0

A Rust network address parsing and arithmetic library
Documentation
1
2
3
4
5
6
7
8
/// The error type for operations relating to the `NetAddr` type.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum NetAddrError {
	ParseError(String),
}

mod display;
mod from;