pub trait NetStackHandlewhere
Self: Sized,{
type Target: Deref<Target = NetStack<Self::Mutex, Self::Interface>> + Clone;
type Mutex: ScopedRawMutex;
type Interface: InterfaceManager;
// Required method
fn stack(&self) -> Self::Target;
}Required Associated Types§
type Target: Deref<Target = NetStack<Self::Mutex, Self::Interface>> + Clone
type Mutex: ScopedRawMutex
type Interface: InterfaceManager
Required Methods§
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.