pub trait Construct<T: CType>: PlatformInstance {
type Range: Enqueue<Self, T>;
// Required method
fn range(
self,
start: T,
stop: T,
size: usize,
) -> Result<AccessOp<Self::Range, Self>, Error>;
}
Required Associated Types§
Required Methods§
fn range( self, start: T, stop: T, size: usize, ) -> Result<AccessOp<Self::Range, Self>, Error>
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.