#[repr(C)]
pub struct SwapchainCreateInfoKHR {
Show 18 fields pub sType: StructureType, pub pNext: *const c_void, pub flags: SwapchainCreateFlagsKHR, pub surface: SurfaceKHR, pub minImageCount: u32, pub imageFormat: Format, pub imageColorSpace: ColorSpaceKHR, pub imageExtent: Extent2D, pub imageArrayLayers: u32, pub imageUsage: ImageUsageFlags, pub imageSharingMode: SharingMode, pub queueFamilyIndexCount: u32, pub pQueueFamilyIndices: *const u32, pub preTransform: SurfaceTransformFlagBitsKHR, pub compositeAlpha: CompositeAlphaFlagBitsKHR, pub presentMode: PresentModeKHR, pub clipped: Bool32, pub oldSwapchain: SwapchainKHR,
}

Fields

sType: StructureTypepNext: *const c_voidflags: SwapchainCreateFlagsKHRsurface: SurfaceKHRminImageCount: u32imageFormat: FormatimageColorSpace: ColorSpaceKHRimageExtent: Extent2DimageArrayLayers: u32imageUsage: ImageUsageFlagsimageSharingMode: SharingModequeueFamilyIndexCount: u32pQueueFamilyIndices: *const u32preTransform: SurfaceTransformFlagBitsKHRcompositeAlpha: CompositeAlphaFlagBitsKHRpresentMode: PresentModeKHRclipped: Bool32oldSwapchain: SwapchainKHR

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.