Struct gfx_hal::DescriptorLimits[][src]

pub struct DescriptorLimits {
Show fields pub max_per_stage_descriptor_samplers: u32, pub max_per_stage_descriptor_uniform_buffers: u32, pub max_per_stage_descriptor_storage_buffers: u32, pub max_per_stage_descriptor_sampled_images: u32, pub max_per_stage_descriptor_storage_images: u32, pub max_per_stage_descriptor_input_attachments: u32, pub max_per_stage_resources: u32, pub max_descriptor_set_samplers: u32, pub max_descriptor_set_uniform_buffers: u32, pub max_descriptor_set_uniform_buffers_dynamic: u32, pub max_descriptor_set_storage_buffers: u32, pub max_descriptor_set_storage_buffers_dynamic: u32, pub max_descriptor_set_sampled_images: u32, pub max_descriptor_set_storage_images: u32, pub max_descriptor_set_input_attachments: u32,
}

Fields

max_per_stage_descriptor_samplers: u32
max_per_stage_descriptor_uniform_buffers: u32
max_per_stage_descriptor_storage_buffers: u32
max_per_stage_descriptor_sampled_images: u32
max_per_stage_descriptor_storage_images: u32
max_per_stage_descriptor_input_attachments: u32
max_per_stage_resources: u32
max_descriptor_set_samplers: u32
max_descriptor_set_uniform_buffers: u32
max_descriptor_set_uniform_buffers_dynamic: u32
max_descriptor_set_storage_buffers: u32
max_descriptor_set_storage_buffers_dynamic: u32
max_descriptor_set_sampled_images: u32
max_descriptor_set_storage_images: u32
max_descriptor_set_input_attachments: u32

Trait Implementations

impl Clone for DescriptorLimits[src]

impl Copy for DescriptorLimits[src]

impl Debug for DescriptorLimits[src]

impl Default for DescriptorLimits[src]

impl PartialEq<DescriptorLimits> for DescriptorLimits[src]

impl StructuralPartialEq for DescriptorLimits[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.