Trait kv::Value

source ·
pub trait Value<'a>: AsRef<[u8]> {
    fn from_raw(raw: &'a [u8]) -> Self;
}
Expand description

A Value can be stored in a database

Required Methods

Used to convert a byte-slice to Value

Implementations on Foreign Types

Implementors