pub struct PhysicalDeviceProperties {
    pub limits: Limits,
    pub descriptor_indexing: DescriptorIndexingProperties,
    pub mesh_shader: MeshShaderProperties,
    pub sampler_reduction: SamplerReductionProperties,
    pub downlevel: DownlevelProperties,
    pub performance_caveats: PerformanceCaveats,
    pub dynamic_pipeline_states: DynamicStates,
    pub external_memory_limits: ExternalMemoryLimits,
}
Expand description

Properties of physical devices that are exposed but do not need to be explicitly opted into.

This contains things like resource limits, alignment requirements, and finer-grained feature capabilities.

Fields

limits: Limits

Core limits.

descriptor_indexing: DescriptorIndexingProperties

Descriptor Indexing properties.

mesh_shader: MeshShaderProperties

Mesh Shader properties.

sampler_reduction: SamplerReductionProperties

Sampler reduction modes.

downlevel: DownlevelProperties

Downlevel properties.

performance_caveats: PerformanceCaveats

Performance caveats.

dynamic_pipeline_states: DynamicStates

Dynamic pipeline states.

external_memory_limits: ExternalMemoryLimits

External memory limits

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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

This method tests for !=.

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

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)

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.