pub trait DeviceExtensions {
// Required methods
fn simple_encoder(&self, label: &str) -> CommandEncoder;
fn simple_bind_group(
&self,
label: Option<&str>,
texture: &Texture,
layout: &BindGroupLayout,
) -> BindGroup;
}