[−][src]Struct async_codec_lite::LengthCodec
Implementations
impl<L> LengthCodec<L>
[src]
Trait Implementations
impl<L> Clone for LengthCodec<L>
[src]
pub fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<L> Debug for LengthCodec<L>
[src]
impl<L: Length> Decoder for LengthCodec<L>
[src]
type Error = OverflowError
type Item = Bytes
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<L> Default for LengthCodec<L>
[src]
impl<L: Length> Encoder for LengthCodec<L>
[src]
type Error = OverflowError
type Item = Bytes
pub fn encode(
&mut self,
src: Self::Item,
dst: &mut BytesMut
) -> Result<(), Self::Error>
[src]
&mut self,
src: Self::Item,
dst: &mut BytesMut
) -> Result<(), Self::Error>
impl<L> PartialEq<LengthCodec<L>> for LengthCodec<L>
[src]
Auto Trait Implementations
impl<L> RefUnwindSafe for LengthCodec<L> where
L: RefUnwindSafe,
[src]
L: RefUnwindSafe,
impl<L> Send for LengthCodec<L> where
L: Send,
[src]
L: Send,
impl<L> Sync for LengthCodec<L> where
L: Sync,
[src]
L: Sync,
impl<L> Unpin for LengthCodec<L> where
L: Unpin,
[src]
L: Unpin,
impl<L> UnwindSafe for LengthCodec<L> where
L: UnwindSafe,
[src]
L: UnwindSafe,
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> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub 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.
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>,