pub trait ObjectCachePlaceholder<V: Value>: Send + Sync {
// Required method
fn complete(self: Box<Self>, value: Option<&V>);
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".