Struct vulkanalia::vk::DescriptorSetAllocateInfo[][src]

#[repr(C)]pub struct DescriptorSetAllocateInfo {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub descriptor_pool: DescriptorPool,
    pub descriptor_set_count: u32,
    pub set_layouts: *const DescriptorSetLayout,
}

Fields

s_type: StructureTypenext: *const c_voiddescriptor_pool: DescriptorPooldescriptor_set_count: u32set_layouts: *const DescriptorSetLayout

Trait Implementations

impl Cast for DescriptorSetAllocateInfo[src]

type Target = DescriptorSetAllocateInfo

The other type this type type can be used interchangeably with in FFI.

impl Clone for DescriptorSetAllocateInfo[src]

impl Copy for DescriptorSetAllocateInfo[src]

impl Debug for DescriptorSetAllocateInfo[src]

impl Default for DescriptorSetAllocateInfo[src]

impl Eq for DescriptorSetAllocateInfo[src]

impl<'b> HasBuilder<'b> for DescriptorSetAllocateInfo[src]

type Builder = DescriptorSetAllocateInfoBuilder<'b>

The associated builder for this type.

impl Hash for DescriptorSetAllocateInfo[src]

impl PartialEq<DescriptorSetAllocateInfo> for DescriptorSetAllocateInfo[src]

impl StructuralEq for DescriptorSetAllocateInfo[src]

impl StructuralPartialEq for DescriptorSetAllocateInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.