netstack3_datagram

Trait DualStackIpExt

Source
pub trait DualStackIpExt: DualStackBaseIpExt + DualStackIpExt<OtherVersion: DualStackBaseIpExt> { }
Expand description

A marker trait for dual-stack socket features.

This trait acts as a marker for [DualStackBaseIpExt] for both Self and Self::OtherVersion.

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.

Implementors§

Source§

impl<I> DualStackIpExt for I
where I: DualStackBaseIpExt + DualStackIpExt<OtherVersion: DualStackBaseIpExt>,