Trait FromMemcacheValueExt

Source
pub trait FromMemcacheValueExt: Sized {
    // Required method
    fn from_memcache_value(
        value: Vec<u8>,
        flags: u32,
        cas: Option<u64>,
    ) -> Result<Self, MemcacheError>;
}

Required Methods§

Source

fn from_memcache_value( value: Vec<u8>, flags: u32, cas: Option<u64>, ) -> Result<Self, MemcacheError>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl FromMemcacheValueExt for (Vec<u8>, u32, Option<u64>)

Source§

fn from_memcache_value( value: Vec<u8>, flags: u32, cas: Option<u64>, ) -> Result<Self, MemcacheError>

Implementors§