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;