Trait NetStackHandle

Source
pub trait NetStackHandle
where 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§

Required Methods§

Source

fn stack(&self) -> Self::Target

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§