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

Methods used to decode the VALUE.

Provided methods

Decode from bytes to the original key type.

Implementors