Enum libp2p_websocket::framed::OutgoingData[][src]

pub enum OutgoingData {
    Binary(Vec<u8>),
    Ping(Vec<u8>),
    Pong(Vec<u8>),
}
Expand description

Data sent over the websocket connection.

Variants

Binary(Vec<u8>)

Send some bytes.

Tuple Fields of Binary

0: Vec<u8>
Ping(Vec<u8>)

Send a PING message.

Tuple Fields of Ping

0: Vec<u8>
Pong(Vec<u8>)

Send an unsolicited PONG message. (Incoming PINGs are answered automatically.)

Tuple Fields of Pong

0: Vec<u8>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The type of value produced by the sink when an error occurs.

Attempts to prepare the Sink to receive a value. Read more

Begin the process of sending a value to the sink. Each call to this function must be preceded by a successful call to poll_ready which returned Poll::Ready(Ok(())). Read more

Flush any remaining output from this sink. Read more

Flush any remaining output and close this sink, if necessary. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.