pub enum BindGroupItem {
StorageBuffer {
label: &'static str,
min_binding_size: u64,
read_only: bool,
},
UniformBuffer {
label: &'static str,
min_binding_size: u64,
},
Texture {
label: &'static str,
},
TextureView {
label: &'static str,
sample_type: TextureSampleType,
},
StorageTexture {
label: &'static str,
access: StorageTextureAccess,
},
Sampler {
label: &'static str,
},
}Variants§
Auto Trait Implementations§
impl Freeze for BindGroupItem
impl RefUnwindSafe for BindGroupItem
impl Send for BindGroupItem
impl Sync for BindGroupItem
impl Unpin for BindGroupItem
impl UnwindSafe for BindGroupItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more