//! Opaque handle wrappers for vendor SDK objects.
//!
//! Backends embed their raw cuBLAS / rocBLAS / MPS / QNN handles in these
//! transparent newtypes so that downstream code never accidentally crosses
//! backend boundaries with a raw pointer.
use PhantomData;
use NonNull;
unsafe
unsafe