Trait CacheValue

Source
pub trait CacheValue {
    // Required method
    fn value(&mut self, handle: *mut CacheHandle);
}

Required Methods§

Source

fn value(&mut self, handle: *mut CacheHandle)

| Return the value encapsulated in a handle | returned by a successful Lookup(). | | REQUIRES: handle must not have been released | yet. | | REQUIRES: handle must have been returned by | a method on *this.

Implementors§