Struct unsigned_varint::codec::Uvi[][src]

pub struct Uvi<T>(_);

Encoder/Decoder of unsigned-varint values

Trait Implementations

impl Decoder for Uvi<u8>[src]

type Item = u8

The type of decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

impl Decoder for Uvi<u16>[src]

type Item = u16

The type of decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

impl Decoder for Uvi<u128>[src]

type Item = u128

The type of items returned by decode

type Error = Error

The type of decoding errors.

impl Decoder for Uvi<usize>[src]

type Item = usize

The type of items returned by decode

type Error = Error

The type of decoding errors.

impl Decoder for Uvi<u32>[src]

type Item = u32

The type of decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

impl Decoder for Uvi<u64>[src]

type Item = u64

The type of decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

impl Decoder for Uvi<u128>[src]

type Item = u128

The type of decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

impl Decoder for Uvi<usize>[src]

type Item = usize

The type of decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

impl Decoder for Uvi<u8>[src]

type Item = u8

The type of items returned by decode

type Error = Error

The type of decoding errors.

impl Decoder for Uvi<u16>[src]

type Item = u16

The type of items returned by decode

type Error = Error

The type of decoding errors.

impl Decoder for Uvi<u32>[src]

type Item = u32

The type of items returned by decode

type Error = Error

The type of decoding errors.

impl Decoder for Uvi<u64>[src]

type Item = u64

The type of items returned by decode

type Error = Error

The type of decoding errors.

impl<T: Default> Default for Uvi<T>[src]

impl Encoder for Uvi<u8>[src]

type Item = u8

The type of items consumed by encode

type Error = Error

The type of encoding errors.

impl Encoder<u128> for Uvi<u128>[src]

type Error = Error

The type of encoding errors. Read more

impl Encoder<u16> for Uvi<u16>[src]

type Error = Error

The type of encoding errors. Read more

impl Encoder<u32> for Uvi<u32>[src]

type Error = Error

The type of encoding errors. Read more

impl Encoder<u64> for Uvi<u64>[src]

type Error = Error

The type of encoding errors. Read more

impl Encoder<u8> for Uvi<u8>[src]

type Error = Error

The type of encoding errors. Read more

impl Encoder<usize> for Uvi<usize>[src]

type Error = Error

The type of encoding errors. Read more

impl Encoder for Uvi<u16>[src]

type Item = u16

The type of items consumed by encode

type Error = Error

The type of encoding errors.

impl Encoder for Uvi<u32>[src]

type Item = u32

The type of items consumed by encode

type Error = Error

The type of encoding errors.

impl Encoder for Uvi<u64>[src]

type Item = u64

The type of items consumed by encode

type Error = Error

The type of encoding errors.

impl Encoder for Uvi<u128>[src]

type Item = u128

The type of items consumed by encode

type Error = Error

The type of encoding errors.

impl Encoder for Uvi<usize>[src]

type Item = usize

The type of items consumed by encode

type Error = Error

The type of encoding errors.

Auto Trait Implementations

impl<T> RefUnwindSafe for Uvi<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Uvi<T> where
    T: Send
[src]

impl<T> Sync for Uvi<T> where
    T: Sync
[src]

impl<T> Unpin for Uvi<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Uvi<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.