logo
pub struct PresentInfo<W> {
    pub swapchain: Arc<Swapchain<W>>,
    pub index: usize,
    pub present_id: Option<u64>,
    pub present_region: Option<PresentRegion>,
    pub _ne: NonExhaustive,
}
Expand description

Fields

swapchain: Arc<Swapchain<W>>

The Swapchain to present to.

index: usize

The same index that acquire_next_image returned. The image must have been acquired first.

present_id: Option<u64>

A present id used for this present call.

Must be greater than previously used.

If this value is zero it is equivalent to None.

If the present_id feature is not enabled on the device, the parameter will be ignored.

present_region: Option<PresentRegion>

Areas outside the present region may be ignored by Vulkan in order to optimize presentation.

This is just an optimization hint, as the Vulkan driver is free to ignore the given present region.

If khr_incremental_present extension is not enabled on the device, the parameter will be ignored.

_ne: NonExhaustive

Implementations

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

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 resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.