Struct ockam_transport_tcp::TcpSendWorker[][src]

pub struct TcpSendWorker { /* fields omitted */ }

A TCP sending message worker

Create this worker type by calling start_tcp_worker!

This half of the worker is created when spawning a new connection worker pair, and listens for messages from the node message system to dispatch to a remote peer.

Trait Implementations

impl Worker for TcpSendWorker[src]

type Context = Context

The API and other resources available for the worker during message processing.

type Message = TransportMessage

The type of Message the Worker is sent in Self::handle_message

Auto Trait Implementations

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> Instrument for T[src]

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

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>,