pub trait KeyDeserialize {
    type Output: Sized;

    fn from_vec(value: Vec<u8>) -> StdResult<Self::Output>;

    fn from_slice(value: &[u8]) -> StdResult<Self::Output> { ... }
}

Required Associated Types§

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§