pub struct Versions { /* private fields */ }
Expand description

A Versions message begins channel negotiation.

Every channel must begin by sending a Versions message. This message lists the link protocol versions that this Tor implementation supports.

Note that we should never actually send Versions cells using the usual channel cell encoding: Versions cells always use two-byte circuit IDs, whereas all the other cell types use four-byte circuit IDs [assuming a non-obsolete version is negotiated].

Implementations

Construct a new Versions message using a provided list of link protocols.

Returns an error if the list of versions is too long.

Encode this VERSIONS cell in the manner expected for a handshake.

(That’s different from a standard cell encoding, since we have not negotiated versions yet, and so our circuit-ID length is an obsolete 2 bytes).

Return the best (numerically highest) link protocol that is shared by this versions cell and my_protos.

Trait Implementations

Convert this type into a ChanMsg, wrapped as appropriate.

Consume this message and encode its body onto w. Read more

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.

Try to extract an object of this type from a Reader. 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

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

🔬 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.