pub trait ToMemcacheValue<W: Write> {
    fn get_flags(&self) -> u32;
    fn get_length(&self) -> usize;
    fn write_to(&self, stream: &mut W) -> Result<()>;
}
Expand description

determine how the value is serialize to memcache

Required Methods§

Implementations on Foreign Types§

Implementors§