Struct vulkano::swapchain::SupportedCompositeAlpha [] [src]

pub struct SupportedCompositeAlpha {
    pub opaque: bool,
    pub pre_multiplied: bool,
    pub post_multiplied: bool,
    pub inherit: bool,
}

List of supported composite alpha modes.

See the docs of CompositeAlpha.

Fields

Methods

impl SupportedCompositeAlpha
[src]

[src]

Builds a SupportedCompositeAlpha with all fields set to false.

[src]

Returns true if the given CompositeAlpha is in this list.

[src]

Returns an iterator to the list of supported composite alpha.

Trait Implementations

impl Copy for SupportedCompositeAlpha
[src]

impl Clone for SupportedCompositeAlpha
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SupportedCompositeAlpha
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for SupportedCompositeAlpha
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for SupportedCompositeAlpha
[src]

Auto Trait Implementations