Trait kv::Value

source · []
pub trait Value: Sized {
    fn to_raw_value(&self) -> Result<Raw, Error>;
    fn from_raw_value(r: Raw) -> Result<Self, Error>;
}
Expand description

A trait used to convert between types and Raw

Required Methods

Wrapper around AsRef<u8>

Convert from Raw

Implementations on Foreign Types

Implementors