[][src]Struct persy::ByteVec

pub struct ByteVec(pub Vec<u8>);

Wrapper for Vec<u8> for use it in index keys or values

Trait Implementations

impl Clone for ByteVec[src]

impl Debug for ByteVec[src]

impl Display for ByteVec[src]

impl Eq for ByteVec[src]

impl From<ByteVec> for Vec<u8>[src]

impl From<Vec<u8>> for ByteVec[src]

impl FromStr for ByteVec[src]

type Err = PersyError

The associated error which can be returned from parsing.

impl IndexType for ByteVec[src]

type Wrapper = Container<Self>

impl Ord for ByteVec[src]

impl PartialEq<ByteVec> for ByteVec[src]

impl PartialOrd<ByteVec> for ByteVec[src]

impl StructuralEq for ByteVec[src]

impl StructuralPartialEq for ByteVec[src]

Auto Trait Implementations

impl RefUnwindSafe for ByteVec

impl Send for ByteVec

impl Sync for ByteVec

impl Unpin for ByteVec

impl UnwindSafe for ByteVec

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> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,