pub trait MemoryHandle<Binding>: Clone + Send + Sync + Debug {
// Required methods
fn can_mut(&self) -> bool;
fn binding(self) -> Binding;
}
Expand description
The managed tensor buffer handle that points to some memory segment. It should not contain actual data.
Required Methods§
Object Safety§
This trait is not object safe.