pub trait IntoWgpu { type WgpuType; // Required method fn into_wgpu(self) -> Self::WgpuType; }
Consume and return the underlying wgpu type.
Implement this trait when ownership of the wgpu type can be transferred.
The underlying wgpu type.
Consume self and return the underlying wgpu type.