pub unsafe trait FromByteVec where
    Self: Sized
{ fn from_byte_vec(vec: Vec<u8>) -> Result<Vec<Self>, Error>; }
Expand description

Trait for converting from a byte Vec<u8> to a Vec<T> of a fundamental, built-in numeric type.

This trait is an implementation detail. Use the IntoVecOf trait.

Required methods

Convert from a byte Vec<u8> to a Vec<T> of a fundamental, built-in numeric type

Implementations on Foreign Types

Implementors