pub trait Address:
FromStr
+ Display
+ Copy {
type Network: NetworkFamily;
}Expand description
Network-specific address type.
Required Associated Types§
Sourcetype Network: NetworkFamily
type Network: NetworkFamily
The network family this address belongs to.
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.