#[non_exhaustive]
pub enum RelayMsg {
Show 23 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, ConnectUdp(ConnectUdp), ConnectedUdp(ConnectedUdp), Datagram(Datagram), EstablishIntro(EstablishIntro), EstablishRendezvous(EstablishRendezvous), Introduce1(Introduce1), Introduce2(Introduce2), 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)

Create a stream

Data(Data)

Send data on a stream

End(End)

Close a stream

Connected(Connected)

Successful response to a Begin message

Sendme(Sendme)

For flow control

Extend(Extend)

Extend a circuit to a new hop (deprecated)

Extended(Extended)

Successful response to an Extend message (deprecated)

Extend2(Extend2)

Extend a circuit to a new hop

Extended2(Extended2)

Successful response to an Extend2 message

Truncate

Partially close a circuit

Truncated(Truncated)

Tell the client the a circuit has been partially closed

Drop

Used for padding

Resolve(Resolve)

Launch a DNS request

Resolved(Resolved)

Response to a Resolve message

BeginDir

Start a directory stream

ConnectUdp(ConnectUdp)

Available on crate feature experimental-udp only.

Start a UDP stream.

ConnectedUdp(ConnectedUdp)

Available on crate feature experimental-udp only.

Successful response to a ConnectUdp message

Datagram(Datagram)

Available on crate feature experimental-udp only.

UDP stream data

EstablishIntro(EstablishIntro)

Available on crate feature onion-service only.

Establish Introduction

EstablishRendezvous(EstablishRendezvous)

Available on crate feature onion-service only.

Establish Rendezvous

Introduce1(Introduce1)

Available on crate feature onion-service only.

Introduce1

Introduce2(Introduce2)

Available on crate feature onion-service only.

Introduce2

Unrecognized(Unrecognized)

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
Converts to this type from the input type.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.