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§
Source§impl Clone for PhysicalDeviceProperties
impl Clone for PhysicalDeviceProperties
Source§fn clone(&self) -> PhysicalDeviceProperties
fn clone(&self) -> PhysicalDeviceProperties
Returns a copy 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 PhysicalDeviceProperties
impl Debug for PhysicalDeviceProperties
Source§impl Default for PhysicalDeviceProperties
impl Default for PhysicalDeviceProperties
Source§fn default() -> PhysicalDeviceProperties
fn default() -> PhysicalDeviceProperties
Returns the “default value” for a type. Read more
Source§impl PartialEq for PhysicalDeviceProperties
impl PartialEq for PhysicalDeviceProperties
impl Copy for PhysicalDeviceProperties
impl StructuralPartialEq for PhysicalDeviceProperties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceProperties
impl RefUnwindSafe for PhysicalDeviceProperties
impl Send for PhysicalDeviceProperties
impl Sync for PhysicalDeviceProperties
impl Unpin for PhysicalDeviceProperties
impl UnwindSafe for PhysicalDeviceProperties
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