pub trait Address:
Copy
+ Debug
+ Display
+ FromStr<Err = AddrParseError>
+ Ord
+ Hash
+ PrivUnspecAddress {
type Inet: Inet<Address = Self>;
type Cidr: Cidr<Address = Self>;
type InetPair: InetPair<Address = Self>;
}Expand description
Required Associated Types§
Sourcetype Inet: Inet<Address = Self>
type Inet: Inet<Address = Self>
Corresponding Inet type (representing an address + a network
containing it)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.