pub struct CreateFast { /* private fields */ }Expand description
A CreateFast message creates a circuit using no public-key crypto.
CreateFast is safe only when used on an already-secure TLS connection. It can only be used for the first hop of a circuit.
Relays reply to a CreateFast message with CreatedFast on success, or a Destroy message on failure.
This handshake was originally used for the first hop of every circuit. Nowadays it is used for creating one-hop circuits when we don’t know any onion key for the first hop.
Implementations§
source§impl CreateFast
impl CreateFast
Trait Implementations§
source§impl Body for CreateFast
impl Body for CreateFast
source§fn encode_onto<W: Writer + ?Sized>(self, w: &mut W) -> EncodeResult<()>
fn encode_onto<W: Writer + ?Sized>(self, w: &mut W) -> EncodeResult<()>
Consume this message and encode its body onto
w. Read moresource§fn decode_from_reader(r: &mut Reader<'_>) -> Result<Self>
fn decode_from_reader(r: &mut Reader<'_>) -> Result<Self>
Decode a channel cell body from a provided reader.
source§impl ChanMsg for CreateFast
impl ChanMsg for CreateFast
source§fn encode_onto<W: Writer + ?Sized>(self, w: &mut W) -> EncodeResult<()>
fn encode_onto<W: Writer + ?Sized>(self, w: &mut W) -> EncodeResult<()>
Write the body of this message (not including length or command).
source§impl Clone for CreateFast
impl Clone for CreateFast
source§fn clone(&self) -> CreateFast
fn clone(&self) -> CreateFast
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CreateFast
impl Debug for CreateFast
source§impl From<CreateFast> for AnyChanMsg
impl From<CreateFast> for AnyChanMsg
source§fn from(m: CreateFast) -> AnyChanMsg
fn from(m: CreateFast) -> AnyChanMsg
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateFast
impl RefUnwindSafe for CreateFast
impl Send for CreateFast
impl Sync for CreateFast
impl Unpin for CreateFast
impl UnwindSafe for CreateFast
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more