[−][src]Struct tokio_codec::LinesCodec
A simple Codec
implementation that splits up data into lines.
Methods
impl LinesCodec
[src]
pub fn new() -> LinesCodec
[src]
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) -> Self
[src]
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.
pub fn max_length(&self) -> usize
[src]
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
impl Clone for LinesCodec
[src]
fn clone(&self) -> LinesCodec
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for LinesCodec
[src]
impl Decoder for LinesCodec
[src]
type Item = String
The type of decoded frames.
type Error = Error
The type of unrecoverable frame decoding errors. Read more
fn decode(&mut self, buf: &mut BytesMut) -> Result<Option<String>, Error>
[src]
fn decode_eof(&mut self, buf: &mut BytesMut) -> Result<Option<String>, Error>
[src]
fn framed<T>(self, io: T) -> Framed<T, Self> where
Self: Encoder,
T: AsyncRead + AsyncWrite,
[src]
Self: Encoder,
T: AsyncRead + AsyncWrite,
impl Encoder for LinesCodec
[src]
type Item = String
The type of items consumed by the Encoder
type Error = Error
The type of encoding errors. Read more
fn encode(&mut self, line: String, buf: &mut BytesMut) -> Result<(), Error>
[src]
impl Eq for LinesCodec
[src]
impl Hash for LinesCodec
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Ord for LinesCodec
[src]
fn cmp(&self, other: &LinesCodec) -> Ordering
[src]
#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<LinesCodec> for LinesCodec
[src]
fn eq(&self, other: &LinesCodec) -> bool
[src]
fn ne(&self, other: &LinesCodec) -> bool
[src]
impl PartialOrd<LinesCodec> for LinesCodec
[src]
fn partial_cmp(&self, other: &LinesCodec) -> Option<Ordering>
[src]
fn lt(&self, other: &LinesCodec) -> bool
[src]
fn le(&self, other: &LinesCodec) -> bool
[src]
fn gt(&self, other: &LinesCodec) -> bool
[src]
fn ge(&self, other: &LinesCodec) -> bool
[src]
impl StructuralEq for LinesCodec
[src]
impl StructuralPartialEq for LinesCodec
[src]
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
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,