Expand description
Provides standard pointer types
Structs§
- NonNull
- Same as
std::ptr::NonNull<T>but backed by aDevice::Ptrinstead of a raw pointer - Ref
- A reference type for devices. Should have the same representation as
&Tbut is not safely transmutable. Device references can not be read directly safely since the host is not guaranteed to be on that device.