Struct vulkano::descriptor::descriptor_set::DescriptorsCount[][src]

pub struct DescriptorsCount {
    pub uniform_buffer: u32,
    pub storage_buffer: u32,
    pub uniform_buffer_dynamic: u32,
    pub storage_buffer_dynamic: u32,
    pub uniform_texel_buffer: u32,
    pub storage_texel_buffer: u32,
    pub sampled_image: u32,
    pub storage_image: u32,
    pub sampler: u32,
    pub combined_image_sampler: u32,
    pub input_attachment: u32,
}
Expand description

Number of available descriptors slots in a pool.

Example

use vulkano::descriptor::descriptor_set::DescriptorsCount;

let _descriptors = DescriptorsCount {
    uniform_buffer: 10,
    input_attachment: 5,
    .. DescriptorsCount::zero()
};

Fields

uniform_buffer: u32storage_buffer: u32uniform_buffer_dynamic: u32storage_buffer_dynamic: u32uniform_texel_buffer: u32storage_texel_buffer: u32sampled_image: u32storage_image: u32sampler: u32combined_image_sampler: u32input_attachment: u32

Implementations

Returns a DescriptorsCount object with all fields set to 0.

Adds one descriptor of the given type to the count.

Adds num descriptors of the given type to the count.

Trait Implementations

The resulting type after applying the + operator.

Performs the + operation. Read more

Performs the += operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

Performs the *= operation. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

The resulting type after applying the - operator.

Performs the - operation. Read more

Performs the -= operation. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Builds a pointer to this type from a raw pointer.

Returns true if the size is suitable to store a type like this.

Returns the size of an individual element.

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.