pub trait KeyDeserialize {
    type Output: Sized;
    fn from_vec(value: Vec<u8>) -> StdResult<Self::Output>;

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

Associated Types

Required methods

Provided methods

Implementations on Foreign Types

Implementors