Struct tor_cell::chancell::codec::ChannelCodec
source · pub struct ChannelCodec { /* private fields */ }Expand description
This object can be used to encode and decode channel cells.
NOTE: only link protocol versions 3 and higher are supported. VERSIONS cells are not supported via the encoder/decoder, since VERSIONS cells always use a two-byte circuit-ID for backwards compatibility with protocol versions < 4.
The implemented format is one of the following:
Variable-length cells (since protocol versions 2 and 3 respectively):
ⓘ
u32 circid;
u8 command;
u16 len;
u8 body[len];Fixed-width cells (since protocol version 1 and 4 respectively):
ⓘ
u32 circid;
u8 command;
u8 body[509];Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ChannelCodec
impl Send for ChannelCodec
impl Sync for ChannelCodec
impl Unpin for ChannelCodec
impl UnwindSafe for ChannelCodec
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