Struct tokio::codec::LinesCodec
source · [−]pub struct LinesCodec { /* private fields */ }
Expand description
A simple Codec
implementation that splits up data into lines.
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) -> 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
LengthError
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_codec::LinesCodec;
let codec = LinesCodec::new();
assert_eq!(codec.max_length(), usize::MAX);
use tokio_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
sourcepub fn clone(&self) -> LinesCodec
pub 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
sourcepub fn decode(&mut self, buf: &mut BytesMut) -> Result<Option<String>, Error>
pub fn decode(&mut self, buf: &mut BytesMut) -> Result<Option<String>, Error>
Attempts to decode a frame from the provided buffer of bytes. Read more
sourceimpl Encoder for LinesCodec
impl Encoder for LinesCodec
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
sourcepub fn eq(&self, other: &LinesCodec) -> bool
pub fn eq(&self, other: &LinesCodec) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &LinesCodec) -> bool
pub fn ne(&self, other: &LinesCodec) -> bool
This method tests for !=
.
sourceimpl PartialOrd<LinesCodec> for LinesCodec
impl PartialOrd<LinesCodec> for LinesCodec
sourcepub fn partial_cmp(&self, other: &LinesCodec) -> Option<Ordering>
pub 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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more