#[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
Fields§
§queue_flags: QueueFlags§queue_count: u32§timestamp_valid_bits: u32§min_image_transfer_granularity: Extent3DImplementations§
Source§impl QueueFamilyProperties
 
impl QueueFamilyProperties
pub fn builder<'a>() -> QueueFamilyPropertiesBuilder<'a>
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 Default for QueueFamilyProperties
 
impl Default for QueueFamilyProperties
Source§fn default() -> QueueFamilyProperties
 
fn default() -> QueueFamilyProperties
Returns the “default value” for a type. Read more
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 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