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

pub struct Uvi<T>(_);

Encoder/Decoder of unsigned-varint values

Trait Implementations

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

impl Encoder for Uvi<u8>[src]

type Item = u8

The type of items consumed by the Encoder

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 the Encoder

type Error = Error

The type of encoding errors. Read more

impl Encoder for Uvi<u32>[src]

type Item = u32

The type of items consumed by the Encoder

type Error = Error

The type of encoding errors. Read more

impl Encoder for Uvi<u64>[src]

type Item = u64

The type of items consumed by the Encoder

type Error = Error

The type of encoding errors. Read more

impl Encoder for Uvi<u128>[src]

type Item = u128

The type of items consumed by the Encoder

type Error = Error

The type of encoding errors. Read more

impl Encoder for Uvi<usize>[src]

type Item = usize

The type of items consumed by the Encoder

type Error = Error

The type of encoding errors. Read more

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<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 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 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 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> Send for Uvi<T> where
    T: Send

impl<T> Sync for Uvi<T> where
    T: Sync

impl<T> Unpin for Uvi<T> where
    T: Unpin

impl<T> UnwindSafe for Uvi<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Uvi<T> where
    T: RefUnwindSafe

Blanket Implementations

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

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

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.

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

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

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