pub struct LengthDelimitedCodec { /* private fields */ }Expand description
The wrapper aroung existing codec, to be compatible with server
Implementations§
Trait Implementations§
Source§impl Clone for LengthDelimitedCodec
impl Clone for LengthDelimitedCodec
Source§fn clone(&self) -> LengthDelimitedCodec
fn clone(&self) -> LengthDelimitedCodec
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Decoder for LengthDelimitedCodec
impl Decoder for LengthDelimitedCodec
Source§fn decode(
&mut self,
src: &mut BytesMut,
) -> Result<Option<Self::Item>, Self::Error>
fn decode( &mut self, src: &mut BytesMut, ) -> Result<Option<Self::Item>, Self::Error>
Attempts to decode a frame from the provided buffer of bytes. Read more
Source§impl Encoder<Bytes> for LengthDelimitedCodec
impl Encoder<Bytes> for LengthDelimitedCodec
Auto Trait Implementations§
impl Freeze for LengthDelimitedCodec
impl RefUnwindSafe for LengthDelimitedCodec
impl Send for LengthDelimitedCodec
impl Sync for LengthDelimitedCodec
impl Unpin for LengthDelimitedCodec
impl UnwindSafe for LengthDelimitedCodec
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