pub struct VkDescriptorSetLayoutBinding {
pub binding: usize,
pub descriptor_type: VkDescriptorType,
pub descriptor_count: usize,
pub stage_flags: VkShaderStageFlags,
pub immutable_samplers: Option<Vec<VkSampler>>,
}
Expand description
Wrapper for VkDescriptorSetLayoutBinding.
Fields§
§binding: usize
§descriptor_type: VkDescriptorType
§descriptor_count: usize
§stage_flags: VkShaderStageFlags
§immutable_samplers: Option<Vec<VkSampler>>
Trait Implementations§
Source§impl Clone for VkDescriptorSetLayoutBinding
impl Clone for VkDescriptorSetLayoutBinding
Source§fn clone(&self) -> VkDescriptorSetLayoutBinding
fn clone(&self) -> VkDescriptorSetLayoutBinding
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VkDescriptorSetLayoutBinding
impl Debug for VkDescriptorSetLayoutBinding
Source§impl Default for VkDescriptorSetLayoutBinding
impl Default for VkDescriptorSetLayoutBinding
Source§fn default() -> VkDescriptorSetLayoutBinding
fn default() -> VkDescriptorSetLayoutBinding
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VkDescriptorSetLayoutBinding
impl RefUnwindSafe for VkDescriptorSetLayoutBinding
impl !Send for VkDescriptorSetLayoutBinding
impl !Sync for VkDescriptorSetLayoutBinding
impl Unpin for VkDescriptorSetLayoutBinding
impl UnwindSafe for VkDescriptorSetLayoutBinding
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