pub struct Vpadding { /* private fields */ }Expand description
A VPadding message is a variable-length padding message.
The correct response to a padding cell is to drop it and do nothing.
Implementations§
Trait Implementations§
source§impl Body for Vpadding
impl Body for Vpadding
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 Vpadding
impl ChanMsg for Vpadding
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<Vpadding> for AnyChanCell
impl From<Vpadding> for AnyChanCell
source§fn from(body: Vpadding) -> AnyChanCell
fn from(body: Vpadding) -> AnyChanCell
Converts to this type from the input type.
source§impl From<Vpadding> for AnyChanMsg
impl From<Vpadding> for AnyChanMsg
source§fn from(m: Vpadding) -> AnyChanMsg
fn from(m: Vpadding) -> AnyChanMsg
Converts to this type from the input type.