Struct embedded_nal::SharedStack[][src]

pub struct SharedStack<'a, T> { /* fields omitted */ }

Single-thread shared reference to an internal network stack implementation.

This can only be created by calling SharableStack::acquire()

Trait Implementations

impl<'a, T> TcpClientStack for SharedStack<'a, T> where
    T: TcpClientStack
[src]

type TcpSocket = T::TcpSocket

The type returned when we create a new TCP socket

type Error = T::Error

The type returned when we have an error

impl<'a, T> TcpFullStack for SharedStack<'a, T> where
    T: TcpFullStack
[src]

impl<'a, T> UdpClientStack for SharedStack<'a, T> where
    T: UdpClientStack
[src]

type Error = T::Error

The type returned when we have an error

type UdpSocket = T::UdpSocket

The type returned when we create a new UDP socket

impl<'a, T> UdpFullStack for SharedStack<'a, T> where
    T: UdpFullStack
[src]

Auto Trait Implementations

impl<'a, T> !Send for SharedStack<'a, T>

impl<'a, T> !Sync for SharedStack<'a, T>

impl<'a, T> Unpin for SharedStack<'a, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.