[][src]Struct unicom_tcp::TcpSocket

pub struct TcpSocket<R> { /* fields omitted */ }

TCP socket backend

Support connecting to devices using network TCP sockets

Methods

impl<R> TcpSocket<R>[src]

pub fn new(resolver: R) -> Self[src]

Trait Implementations

impl<R> Backend for TcpSocket<R> where
    R: Resolver
[src]

impl<R: Clone> Clone for TcpSocket<R>[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for TcpSocket<R> where
    R: RefUnwindSafe

impl<R> Send for TcpSocket<R> where
    R: Send

impl<R> Sync for TcpSocket<R> where
    R: Sync

impl<R> Unpin for TcpSocket<R> where
    R: Unpin

impl<R> UnwindSafe for TcpSocket<R> where
    R: UnwindSafe

Blanket Implementations

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

impl<T> Backend for T where
    T: Deref<Target = dyn Backend + 'static>, 
[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,