#[repr(C)]pub struct VkApplicationInfo {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub pApplicationName: *const i8,
pub applicationVersion: u32,
pub pEngineName: *const i8,
pub engineVersion: u32,
pub apiVersion: u32,
}Expand description
struct VkApplicationInfo from VK_VERSION_1_0
Fields§
§sType: VkStructureType§pNext: *const c_void§pApplicationName: *const i8§applicationVersion: u32§pEngineName: *const i8§engineVersion: u32§apiVersion: u32Trait Implementations§
Source§impl Clone for VkApplicationInfo
impl Clone for VkApplicationInfo
Source§fn clone(&self) -> VkApplicationInfo
fn clone(&self) -> VkApplicationInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VkApplicationInfo
Source§impl Debug for VkApplicationInfo
impl Debug for VkApplicationInfo
Auto Trait Implementations§
impl !Send for VkApplicationInfo
impl !Sync for VkApplicationInfo
impl Freeze for VkApplicationInfo
impl RefUnwindSafe for VkApplicationInfo
impl Unpin for VkApplicationInfo
impl UnsafeUnpin for VkApplicationInfo
impl UnwindSafe for VkApplicationInfo
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