Struct tokio_util::codec::length_delimited::LengthDelimitedCodec
source · [−]pub struct LengthDelimitedCodec { /* private fields */ }
Expand description
A codec for frames delimited by a frame head specifying their lengths.
This allows the consumer to work with entire frames without having to worry about buffering or other framing logic.
See module level documentation for more detail.
Implementations
sourceimpl LengthDelimitedCodec
impl LengthDelimitedCodec
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new length delimited codec builder with default configuration values.
sourcepub fn max_frame_length(&self) -> usize
pub fn max_frame_length(&self) -> usize
Returns the current max frame setting
This is the largest size this codec will accept from the wire. Larger frames will be rejected.
sourcepub fn set_max_frame_length(&mut self, val: usize)
pub fn set_max_frame_length(&mut self, val: usize)
Updates the max frame setting.
The change takes effect the next time a frame is decoded. In other
words, if a frame is currently in process of being decoded with a frame
size greater than val
but less than the max frame length in effect
before calling this function, then the frame will be allowed.
Trait Implementations
sourceimpl Debug for LengthDelimitedCodec
impl Debug for LengthDelimitedCodec
sourceimpl Decoder for LengthDelimitedCodec
impl Decoder for LengthDelimitedCodec
sourcefn decode(&mut self, src: &mut BytesMut) -> Result<Option<BytesMut>>
fn decode(&mut self, src: &mut BytesMut) -> Result<Option<BytesMut>>
Attempts to decode a frame from the provided buffer of bytes. Read more
sourceimpl Default for LengthDelimitedCodec
impl Default for LengthDelimitedCodec
Auto Trait Implementations
impl RefUnwindSafe for LengthDelimitedCodec
impl Send for LengthDelimitedCodec
impl Sync for LengthDelimitedCodec
impl Unpin for LengthDelimitedCodec
impl UnwindSafe for LengthDelimitedCodec
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