pub trait IpExt {
// Required method
fn is_unicast_link_local(&self) -> bool;
}Expand description
Extension to IP types.
Required Methods§
Sourcefn is_unicast_link_local(&self) -> bool
fn is_unicast_link_local(&self) -> bool
Is the address a unicast and link-local address?
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".