pub struct Created { /* private fields */ }Expand description
A Created message responds to a Created message, using the TAP handshake.
TAP is an obsolete handshake based on RSA-1024 and DH-1024.
Implementations§
Trait Implementations§
source§impl Body for Created
impl Body for Created
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 Created
impl ChanMsg for Created
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 From<Created> for AnyChanMsg
impl From<Created> for AnyChanMsg
source§fn from(m: Created) -> AnyChanMsg
fn from(m: Created) -> AnyChanMsg
Converts to this type from the input type.