Struct wire_framed::codec::LinesCodec
pub struct LinesCodec { /* private fields */ }Implementations§
§impl LinesCodec
impl LinesCodec
pub 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.
pub fn new_with_max_length(max_length: usize) -> LinesCodec
pub fn new_with_max_length(max_length: usize) -> LinesCodec
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.
pub 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§
§impl Clone for LinesCodec
impl Clone for LinesCodec
§fn clone(&self) -> LinesCodec
fn clone(&self) -> LinesCodec
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more§impl Debug for LinesCodec
impl Debug for LinesCodec
§impl Decoder for LinesCodec
impl Decoder for LinesCodec
§type Error = LinesCodecError
type Error = LinesCodecError
§fn decode(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
fn decode( &mut self, buf: &mut BytesMut ) -> Result<Option<String>, LinesCodecError>
§fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<String>, LinesCodecError>
fn decode_eof( &mut self, buf: &mut BytesMut ) -> Result<Option<String>, LinesCodecError>
§impl Default for LinesCodec
impl Default for LinesCodec
§fn default() -> LinesCodec
fn default() -> LinesCodec
§impl<T> Encoder<T> for LinesCodecwhere
T: AsRef<str>,
impl<T> Encoder<T> for LinesCodecwhere T: AsRef<str>,
§impl Hash for LinesCodec
impl Hash for LinesCodec
§impl Ord for LinesCodec
impl Ord for LinesCodec
§impl PartialEq<LinesCodec> for LinesCodec
impl PartialEq<LinesCodec> for LinesCodec
§fn eq(&self, other: &LinesCodec) -> bool
fn eq(&self, other: &LinesCodec) -> bool
self and other values to be equal, and is used
by ==.§impl PartialOrd<LinesCodec> for LinesCodec
impl PartialOrd<LinesCodec> for LinesCodec
§fn partial_cmp(&self, other: &LinesCodec) -> Option<Ordering>
fn partial_cmp(&self, other: &LinesCodec) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read more