#[repr(C)]pub struct InstanceCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: InstanceCreateFlagBits,
pub p_application_info: *const ApplicationInfo,
pub enabled_layer_count: u32,
pub pp_enabled_layer_names: *const *const i8,
pub enabled_extension_count: u32,
pub pp_enabled_extension_names: *const *const i8,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO.
p_next: *const c_voidOptional, may be null.
flags: InstanceCreateFlagBits§p_application_info: *const ApplicationInfoOptional, may be null.
enabled_layer_count: u32Length of pp_enabled_layer_names.
pp_enabled_layer_names: *const *const i8§enabled_extension_count: u32Length of pp_enabled_extension_names.
pp_enabled_extension_names: *const *const i8Implementations§
Source§impl InstanceCreateInfo
impl InstanceCreateInfo
Sourcepub fn builder<'a>() -> InstanceCreateInfoBuilder<'a>
pub fn builder<'a>() -> InstanceCreateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for InstanceCreateInfo
impl Clone for InstanceCreateInfo
Source§fn clone(&self) -> InstanceCreateInfo
fn clone(&self) -> InstanceCreateInfo
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 InstanceCreateInfo
impl Debug for InstanceCreateInfo
Source§impl Default for InstanceCreateInfo
impl Default for InstanceCreateInfo
Source§fn default() -> InstanceCreateInfo
fn default() -> InstanceCreateInfo
Returns the “default value” for a type. Read more
impl Copy for InstanceCreateInfo
Auto Trait Implementations§
impl Freeze for InstanceCreateInfo
impl RefUnwindSafe for InstanceCreateInfo
impl !Send for InstanceCreateInfo
impl !Sync for InstanceCreateInfo
impl Unpin for InstanceCreateInfo
impl UnsafeUnpin for InstanceCreateInfo
impl UnwindSafe for InstanceCreateInfo
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