[−][src]Struct unsigned_varint::codec::UviBytes
Encoder/Decoder of unsigned-varint, length-prefixed bytes
Implementations
impl<T> UviBytes<T>
[src]
pub fn set_max_len(&mut self, val: usize)
[src]
Limit the maximum allowed length of bytes.
pub fn max_len(&self) -> usize
[src]
Return the maximum allowed number of bytes to encode/decode.
Trait Implementations
impl<T> Decoder for UviBytes<T>
[src]
type Item = BytesMut
The type of decoded frames.
type Error = Error
The type of unrecoverable frame decoding errors. Read more
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>
fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
fn framed<T>(self, io: T) -> Framed<T, Self> where
T: AsyncRead + AsyncWrite,
[src]
T: AsyncRead + AsyncWrite,
impl<T> Decoder for UviBytes<T>
[src]
type Item = BytesMut
The type of items returned by decode
type Error = Error
The type of decoding errors.
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>
fn decode_eof(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
impl<T> Default for UviBytes<T>
[src]
impl<T: Buf> Encoder<T> for UviBytes<T>
[src]
type Error = Error
The type of encoding errors. Read more
fn encode(&mut self, item: T, dst: &mut BytesMut) -> Result<(), Self::Error>
[src]
impl<T: Buf> Encoder for UviBytes<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for UviBytes<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for UviBytes<T> where
T: Send,
T: Send,
impl<T> Sync for UviBytes<T> where
T: Sync,
T: Sync,
impl<T> Unpin for UviBytes<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for UviBytes<T> where
T: UnwindSafe,
T: 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,
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.
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>,