#[repr(C)]pub struct QueueFamilyGlobalPriorityProperties {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub priority_count: u32,
pub priorities: [QueueGlobalPriority; 16],
}Expand description
VkQueueFamilyGlobalPriorityProperties
Provided by VK_BASE_VERSION_1_4.
Returned only*, filled by Vulkan, not constructed by the application.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_QUEUE_FAMILY_GLOBAL_PRIORITY_PROPERTIES.
p_next: *mut c_voidOptional, may be null.
priority_count: u32§priorities: [QueueGlobalPriority; 16]Implementations§
Source§impl QueueFamilyGlobalPriorityProperties
impl QueueFamilyGlobalPriorityProperties
Sourcepub fn builder<'a>() -> QueueFamilyGlobalPriorityPropertiesBuilder<'a>
pub fn builder<'a>() -> QueueFamilyGlobalPriorityPropertiesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for QueueFamilyGlobalPriorityProperties
impl Clone for QueueFamilyGlobalPriorityProperties
Source§fn clone(&self) -> QueueFamilyGlobalPriorityProperties
fn clone(&self) -> QueueFamilyGlobalPriorityProperties
Returns a duplicate 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 Default for QueueFamilyGlobalPriorityProperties
impl Default for QueueFamilyGlobalPriorityProperties
Source§fn default() -> QueueFamilyGlobalPriorityProperties
fn default() -> QueueFamilyGlobalPriorityProperties
Returns the “default value” for a type. Read more
impl Copy for QueueFamilyGlobalPriorityProperties
impl ExtendsQueueFamilyProperties2 for QueueFamilyGlobalPriorityProperties
Auto Trait Implementations§
impl Freeze for QueueFamilyGlobalPriorityProperties
impl RefUnwindSafe for QueueFamilyGlobalPriorityProperties
impl !Send for QueueFamilyGlobalPriorityProperties
impl !Sync for QueueFamilyGlobalPriorityProperties
impl Unpin for QueueFamilyGlobalPriorityProperties
impl UnsafeUnpin for QueueFamilyGlobalPriorityProperties
impl UnwindSafe for QueueFamilyGlobalPriorityProperties
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