pub trait CacheValue {
// Required method
fn value(&mut self, handle: *mut CacheHandle);
}
Required Methods§
Sourcefn value(&mut self, handle: *mut CacheHandle)
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.