pub struct VulkanDisplayImageImportMetadata {Show 15 fields
pub flags: u32,
pub image_type: i32,
pub format: i32,
pub extent: VkExtent3D,
pub mip_levels: u32,
pub array_layers: u32,
pub samples: u32,
pub tiling: i32,
pub usage: u32,
pub sharing_mode: i32,
pub queue_family_indices: Vec<u32>,
pub initial_layout: i32,
pub allocation_size: u64,
pub memory_type_index: u32,
pub dedicated_allocation: bool,
}
Fields§
§flags: u32
§image_type: i32
§format: i32
§extent: VkExtent3D
§mip_levels: u32
§array_layers: u32
§samples: u32
§tiling: i32
§usage: u32
§sharing_mode: i32
§queue_family_indices: Vec<u32>
§initial_layout: i32
§allocation_size: u64
§memory_type_index: u32
§dedicated_allocation: bool
Auto Trait Implementations§
impl Freeze for VulkanDisplayImageImportMetadata
impl RefUnwindSafe for VulkanDisplayImageImportMetadata
impl Send for VulkanDisplayImageImportMetadata
impl Sync for VulkanDisplayImageImportMetadata
impl Unpin for VulkanDisplayImageImportMetadata
impl UnwindSafe for VulkanDisplayImageImportMetadata
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.