Trait pearl::Key[][src]

pub trait Key: AsRef<[u8]> + Debug + Clone + Send + Sync + Ord + From<Vec<u8>> + Default {
    const LEN: u16;
    fn to_vec(&self) -> Vec<u8>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
{ ... } }
Expand description

Trait Key

Associated Constants

Key must have fixed length

Provided methods

Convert Self into Vec<u8>

Implementors