#[repr(C)]pub struct QueueFamilyProperties {
pub queue_flags: QueueFlags,
pub queue_count: u32,
pub timestamp_valid_bits: u32,
pub min_image_transfer_granularity: Extent3D,
}Expand description
VkQueueFamilyProperties
Provided by VK_BASE_VERSION_1_0.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§queue_flags: QueueFlags§queue_count: u32§timestamp_valid_bits: u32§min_image_transfer_granularity: Extent3DImplementations§
Source§impl QueueFamilyProperties
impl QueueFamilyProperties
Sourcepub fn builder() -> QueueFamilyPropertiesBuilder
pub fn builder() -> QueueFamilyPropertiesBuilder
Start building this struct.
Trait Implementations§
Source§impl Clone for QueueFamilyProperties
impl Clone for QueueFamilyProperties
Source§fn clone(&self) -> QueueFamilyProperties
fn clone(&self) -> QueueFamilyProperties
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 Debug for QueueFamilyProperties
impl Debug for QueueFamilyProperties
Source§impl Default for QueueFamilyProperties
impl Default for QueueFamilyProperties
impl Copy for QueueFamilyProperties
Auto Trait Implementations§
impl Freeze for QueueFamilyProperties
impl RefUnwindSafe for QueueFamilyProperties
impl Send for QueueFamilyProperties
impl Sync for QueueFamilyProperties
impl Unpin for QueueFamilyProperties
impl UnsafeUnpin for QueueFamilyProperties
impl UnwindSafe for QueueFamilyProperties
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