[][src]Struct wayk_proto::container::Bytes16

pub struct Bytes16<'a>(pub &'a [u8]);

Trait Implementations

impl<'a> Clone for Bytes16<'a>[src]

impl<'a> Debug for Bytes16<'a>[src]

impl<'dec: 'a, 'a> Decode<'dec> for Bytes16<'a>[src]

impl<'a> Deref for Bytes16<'a>[src]

type Target = &'a [u8]

The resulting type after dereferencing.

impl<'_> Encode for Bytes16<'_>[src]

impl<'a> From<&'a [u8]> for Bytes16<'a>[src]

impl<'a> Into<&'a [u8]> for Bytes16<'a>[src]

impl<'a> IntoIterator for &'a Bytes16<'a>[src]

type Item = &'a u8

The type of the elements being iterated over.

type IntoIter = Iter<'a, u8>

Which kind of iterator are we turning this into?

impl<'a> PartialEq<&'a [u8]> for Bytes16<'a>[src]

impl<'a> PartialEq<Bytes16<'a>> for Bytes16<'a>[src]

impl<'a> StructuralPartialEq for Bytes16<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Bytes16<'a>

impl<'a> Send for Bytes16<'a>

impl<'a> Sync for Bytes16<'a>

impl<'a> Unpin for Bytes16<'a>

impl<'a> UnwindSafe for Bytes16<'a>

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.