pub trait CacheAble<D>where
D: Device,{
// Required method
fn retrieve<T, S>(
device: &D,
len: usize,
add_node: impl AddGraph,
) -> Buffer<'_, T, D, S>
where S: Shape,
D: for<'a> Alloc<'a, T, S>;
}Required Methods§
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.