pub trait DenseData<A: Backend> {
type DenseDataRaw;
// Required method
fn as_ptr(&self) -> Self::DenseDataRaw;
}Required Associated Types§
type DenseDataRaw
Required Methods§
fn as_ptr(&self) -> Self::DenseDataRaw
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".