[][src]Struct wayk_proto::container::Bytes8

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

Trait Implementations

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

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

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

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

type Target = &'a [u8]

The resulting type after dereferencing.

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

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

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

impl<'a> IntoIterator for &'a Bytes8<'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 Bytes8<'a>[src]

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Bytes8<'a>

impl<'a> Send for Bytes8<'a>

impl<'a> Sync for Bytes8<'a>

impl<'a> Unpin for Bytes8<'a>

impl<'a> UnwindSafe for Bytes8<'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.