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
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for LinesCodec
impl Debug for LinesCodec
sourceimpl Decoder for LinesCodec
impl Decoder for LinesCodec
type Error = LinesCodecError
type Error = LinesCodecError
sourcefn decode(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
fn decode(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
sourcefn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
sourceimpl Default for LinesCodec
impl Default for LinesCodec
sourceimpl<T> Encoder<T> for LinesCodecwhere
T: AsRef<str>,
impl<T> Encoder<T> for LinesCodecwhere
T: AsRef<str>,
type Error = LinesCodecError
type Error = LinesCodecError
sourceimpl Hash for LinesCodec
impl Hash for LinesCodec
sourceimpl Ord for LinesCodec
impl Ord for LinesCodec
sourcefn cmp(&self, other: &LinesCodec) -> Ordering
fn cmp(&self, other: &LinesCodec) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
sourceimpl PartialEq<LinesCodec> for LinesCodec
impl PartialEq<LinesCodec> for LinesCodec
sourcefn eq(&self, other: &LinesCodec) -> bool
fn eq(&self, other: &LinesCodec) -> bool
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>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more