[−][src]Struct asynchronous_codec::LinesCodec
A simple Codec
implementation that splits up data into lines.
use futures::stream::TryStreamExt; // for lines.try_next() use asynchronous_codec::{FramedRead, LinesCodec}; let input = "hello\nworld\nthis\nis\ndog\n".as_bytes(); let mut lines = FramedRead::new(input, LinesCodec); while let Some(line) = lines.try_next().await? { println!("{}", line); }
Trait Implementations
impl Decoder for LinesCodec
[src]
type Item = String
The type of items returned by decode
type Error = Error
The type of decoding errors.
pub fn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
pub fn decode_eof(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
impl Encoder for LinesCodec
[src]
Auto Trait Implementations
impl RefUnwindSafe for LinesCodec
[src]
impl Send for LinesCodec
[src]
impl Sync for LinesCodec
[src]
impl Unpin for LinesCodec
[src]
impl UnwindSafe for LinesCodec
[src]
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,
pub 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, 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.
pub 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>,