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 it VERSIONS always uses a two-byte circuit-ID.
The implemented format is one of the following:
ⓘ
u32 circid;
u8 command;
u16 len;
u8 body[len];
ⓘ
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more