#[repr(C)]pub struct DescriptorSetLayoutSupport {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub supported: u32,
}Expand description
VkDescriptorSetLayoutSupport
Provided by VK_COMPUTE_VERSION_1_1.
Returned only*, filled by Vulkan, not constructed by the application.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT.
p_next: *mut c_voidOptional, may be null.
supported: u32Implementations§
Source§impl DescriptorSetLayoutSupport
impl DescriptorSetLayoutSupport
Sourcepub fn builder<'a>() -> DescriptorSetLayoutSupportBuilder<'a>
pub fn builder<'a>() -> DescriptorSetLayoutSupportBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DescriptorSetLayoutSupport
impl Clone for DescriptorSetLayoutSupport
Source§fn clone(&self) -> DescriptorSetLayoutSupport
fn clone(&self) -> DescriptorSetLayoutSupport
Returns a duplicate 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 DescriptorSetLayoutSupport
impl Debug for DescriptorSetLayoutSupport
Source§impl Default for DescriptorSetLayoutSupport
impl Default for DescriptorSetLayoutSupport
impl Copy for DescriptorSetLayoutSupport
Auto Trait Implementations§
impl Freeze for DescriptorSetLayoutSupport
impl RefUnwindSafe for DescriptorSetLayoutSupport
impl !Send for DescriptorSetLayoutSupport
impl !Sync for DescriptorSetLayoutSupport
impl Unpin for DescriptorSetLayoutSupport
impl UnsafeUnpin for DescriptorSetLayoutSupport
impl UnwindSafe for DescriptorSetLayoutSupport
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