[−][src]Struct asynchronous_codec::LengthCodec
A simple Codec
implementation sending your data by prefixing it by its length.
Example
This codec will most likely be used wrapped in another codec like so.
use asynchronous_codec::{Decoder, Encoder, LengthCodec}; use bytes::{Bytes, BytesMut}; use std::io::{Error, ErrorKind}; pub struct MyStringCodec(LengthCodec); impl Encoder for MyStringCodec { type Item = String; type Error = Error; fn encode(&mut self, src: Self::Item, dst: &mut BytesMut) -> Result<(), Self::Error> { let bytes = Bytes::from(src); self.0.encode(bytes, dst) } } impl Decoder for MyStringCodec { type Item = String; type Error = Error; fn decode(&mut self, src: &mut BytesMut) -> Result<Option<Self::Item>, Self::Error> { match self.0.decode(src)? { Some(bytes) => { match String::from_utf8(bytes.to_vec()) { Ok(string) => Ok(Some(string)), Err(e) => Err(Error::new(ErrorKind::InvalidData, e)) } }, None => Ok(None), } } }
Trait Implementations
impl Decoder for LengthCodec
[src]
type Item = Bytes
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 LengthCodec
[src]
Auto Trait Implementations
impl RefUnwindSafe for LengthCodec
[src]
impl Send for LengthCodec
[src]
impl Sync for LengthCodec
[src]
impl Unpin for LengthCodec
[src]
impl UnwindSafe for LengthCodec
[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>,