pub trait AsWgpu {
type WgpuType;
// Required method
fn as_wgpu(&self) -> &Self::WgpuType;
}Expand description
Access the underlying wgpu type (immutable).
Implement this trait to expose the underlying wgpu type for advanced access.
pub trait AsWgpu {
type WgpuType;
// Required method
fn as_wgpu(&self) -> &Self::WgpuType;
}Access the underlying wgpu type (immutable).
Implement this trait to expose the underlying wgpu type for advanced access.