Enum tor_cell::relaycell::msg::RelayMsg[][src]

#[non_exhaustive]
pub enum RelayMsg {
Show 16 variants Begin(Begin), Data(Data), End(End), Connected(Connected), Sendme(Sendme), Extend(Extend), Extended(Extended), Extend2(Extend2), Extended2(Extended2), Truncate, Truncated(Truncated), Drop, Resolve(Resolve), Resolved(Resolved), BeginDir, Unrecognized(Unrecognized),
}
Expand description

A single parsed relay message, sent or received along a circuit

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

Begin(Begin)

Tuple Fields

0: Begin

Create a stream

Data(Data)

Tuple Fields

0: Data

Send data on a stream

End(End)

Tuple Fields

0: End

Close a stream

Connected(Connected)

Tuple Fields

Successful response to a Begin message

Sendme(Sendme)

Tuple Fields

0: Sendme

For flow control

Extend(Extend)

Tuple Fields

0: Extend

Extend a circuit to a new hop (deprecated)

Extended(Extended)

Tuple Fields

Successful response to an Extend message (deprecated)

Extend2(Extend2)

Tuple Fields

Extend a circuit to a new hop

Extended2(Extended2)

Tuple Fields

Successful response to an Extend2 message

Truncate

Partially close a circuit

Truncated(Truncated)

Tuple Fields

Tell the client the a circuit has been partially closed

Drop

Used for padding

Resolve(Resolve)

Tuple Fields

Launch a DNS request

Resolved(Resolved)

Tuple Fields

Response to a Resolve message

BeginDir

Start a directory stream

Unrecognized(Unrecognized)

Tuple Fields

An unrecognized command.

Implementations

Return the stream command associated with this message.

Extract the body of this message from r

Encode the body of this message, not including command or length

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

Performs the conversion.

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)

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.