pub trait KeyDe: DeserializeOwned {
    fn decode_key(bytes: &[u8]) -> Result<Self> { ... }
}
Expand description

Methods used to decode the KEY.

Provided methods

Decode from bytes to the original key type.

Implementors