Struct std_embedded_nal::Stack [−][src]
pub struct Stack;
Expand description
The operating system’s network stack, implementing embedded_nal::UdpFullStack
and others.
The user may instantiate a stack using the Stack::default()
function.
The stack can be cloned, as it is not a resource that needs any synchronization. This is not
made implicit as Copy, though (although there’s not technical reason not to). That is to alert
users to the difficulties that’d arise when copying around a stack rather than using it through
some mechanism of synchronization (which is generally required with embedded_nal
since
version 0.3).
Trait Implementations
Resolve the first ip address of a host, given its hostname and a desired address record type to look for Read more
Auto Trait Implementations
impl RefUnwindSafe for Stack
impl UnwindSafe for Stack
Blanket Implementations
Mutably borrows from an owned value. Read more