pub struct ContextVulkanInfo {
pub vk_instance: *mut c_void,
pub vk_physical_device: *mut c_void,
pub vk_logical_device: *mut c_void,
pub graphics_queue_family_index: u32,
pub graphics_queue_index: u32,
}Fields§
§vk_instance: *mut c_void§vk_physical_device: *mut c_void§vk_logical_device: *mut c_void§graphics_queue_family_index: u32§graphics_queue_index: u32Trait Implementations§
Source§impl Clone for ContextVulkanInfo
impl Clone for ContextVulkanInfo
Source§fn clone(&self) -> ContextVulkanInfo
fn clone(&self) -> ContextVulkanInfo
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 ContextVulkanInfo
impl Debug for ContextVulkanInfo
impl Copy for ContextVulkanInfo
Auto Trait Implementations§
impl Freeze for ContextVulkanInfo
impl RefUnwindSafe for ContextVulkanInfo
impl !Send for ContextVulkanInfo
impl !Sync for ContextVulkanInfo
impl Unpin for ContextVulkanInfo
impl UnwindSafe for ContextVulkanInfo
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