[][src]Struct pea2pea::Connection

pub struct Connection {
    pub inbound_reader_task: OnceCell<JoinHandle<()>>,
    pub inbound_processing_task: OnceCell<JoinHandle<()>>,
    pub side: ConnectionSide,
    // some fields omitted
}

An object dedicated to performing writes to the stream

Fields

inbound_reader_task: OnceCell<JoinHandle<()>>

The handle to the task performing reads from the stream.

inbound_processing_task: OnceCell<JoinHandle<()>>

The handle to the task processing read messages.

side: ConnectionSide

The connection's side in relation to the node.

Implementations

impl Connection[src]

pub async fn send_message(&self, message: Bytes)[src]

Sends the given message to the peer associated with the connection.

Trait Implementations

impl Drop for Connection[src]

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.