Struct tokio_util::codec::LinesCodec
source · [−]pub struct LinesCodec { /* private fields */ }
Implementations
sourceimpl LinesCodec
impl LinesCodec
sourcepub fn new() -> LinesCodec
pub fn new() -> LinesCodec
Returns a LinesCodec
for splitting up data into lines.
Note
The returned LinesCodec
will not have an upper bound on the length
of a buffered line. See the documentation for new_with_max_length
for information on why this could be a potential security risk.
sourcepub fn new_with_max_length(max_length: usize) -> Self
pub fn new_with_max_length(max_length: usize) -> Self
Returns a LinesCodec
with a maximum line length limit.
If this is set, calls to LinesCodec::decode
will return a
LinesCodecError
when a line exceeds the length limit. Subsequent calls
will discard up to limit
bytes from that line until a newline
character is reached, returning None
until the line over the limit
has been fully discarded. After that point, calls to decode
will
function as normal.
Note
Setting a length limit is highly recommended for any LinesCodec
which
will be exposed to untrusted input. Otherwise, the size of the buffer
that holds the line currently being read is unbounded. An attacker could
exploit this unbounded buffer by sending an unbounded amount of input
without any \n
characters, causing unbounded memory consumption.
sourcepub fn max_length(&self) -> usize
pub fn max_length(&self) -> usize
Returns the maximum line length when decoding.
use std::usize;
use tokio_util::codec::LinesCodec;
let codec = LinesCodec::new();
assert_eq!(codec.max_length(), usize::MAX);
use tokio_util::codec::LinesCodec;
let codec = LinesCodec::new_with_max_length(256);
assert_eq!(codec.max_length(), 256);
Trait Implementations
sourceimpl Clone for LinesCodec
impl Clone for LinesCodec
sourcefn clone(&self) -> LinesCodec
fn clone(&self) -> LinesCodec
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for LinesCodec
impl Debug for LinesCodec
sourceimpl Decoder for LinesCodec
impl Decoder for LinesCodec
type Error = LinesCodecError
type Error = LinesCodecError
The type of unrecoverable frame decoding errors. Read more
sourcefn decode(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
fn decode(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
Attempts to decode a frame from the provided buffer of bytes. Read more
sourcefn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
A default method available to be called when there are no more bytes available to be read from the underlying I/O. Read more
sourceimpl Default for LinesCodec
impl Default for LinesCodec
sourceimpl<T> Encoder<T> for LinesCodec where
T: AsRef<str>,
impl<T> Encoder<T> for LinesCodec where
T: AsRef<str>,
type Error = LinesCodecError
type Error = LinesCodecError
The type of encoding errors. Read more
sourceimpl Hash for LinesCodec
impl Hash for LinesCodec
sourceimpl Ord for LinesCodec
impl Ord for LinesCodec
sourceimpl PartialEq<LinesCodec> for LinesCodec
impl PartialEq<LinesCodec> for LinesCodec
sourcefn eq(&self, other: &LinesCodec) -> bool
fn eq(&self, other: &LinesCodec) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &LinesCodec) -> bool
fn ne(&self, other: &LinesCodec) -> bool
This method tests for !=
.
sourceimpl PartialOrd<LinesCodec> for LinesCodec
impl PartialOrd<LinesCodec> for LinesCodec
sourcefn partial_cmp(&self, other: &LinesCodec) -> Option<Ordering>
fn partial_cmp(&self, other: &LinesCodec) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for LinesCodec
impl StructuralEq for LinesCodec
impl StructuralPartialEq for LinesCodec
Auto Trait Implementations
impl RefUnwindSafe for LinesCodec
impl Send for LinesCodec
impl Sync for LinesCodec
impl Unpin for LinesCodec
impl UnwindSafe for LinesCodec
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