Struct vulkanalia::vk::PipelineColorBlendAttachmentState[][src]

#[repr(C)]pub struct PipelineColorBlendAttachmentState {
    pub blend_enable: u32,
    pub src_color_blend_factor: BlendFactor,
    pub dst_color_blend_factor: BlendFactor,
    pub color_blend_op: BlendOp,
    pub src_alpha_blend_factor: BlendFactor,
    pub dst_alpha_blend_factor: BlendFactor,
    pub alpha_blend_op: BlendOp,
    pub color_write_mask: ColorComponentFlags,
}

Fields

blend_enable: u32src_color_blend_factor: BlendFactordst_color_blend_factor: BlendFactorcolor_blend_op: BlendOpsrc_alpha_blend_factor: BlendFactordst_alpha_blend_factor: BlendFactoralpha_blend_op: BlendOpcolor_write_mask: ColorComponentFlags

Trait Implementations

impl Cast for PipelineColorBlendAttachmentState[src]

type Target = PipelineColorBlendAttachmentState

The other type this type type can be used interchangeably with in FFI.

impl Clone for PipelineColorBlendAttachmentState[src]

impl Copy for PipelineColorBlendAttachmentState[src]

impl Debug for PipelineColorBlendAttachmentState[src]

impl Default for PipelineColorBlendAttachmentState[src]

impl Eq for PipelineColorBlendAttachmentState[src]

impl HasBuilder<'static> for PipelineColorBlendAttachmentState[src]

type Builder = PipelineColorBlendAttachmentStateBuilder

The associated builder for this type.

impl Hash for PipelineColorBlendAttachmentState[src]

impl PartialEq<PipelineColorBlendAttachmentState> for PipelineColorBlendAttachmentState[src]

impl StructuralEq for PipelineColorBlendAttachmentState[src]

impl StructuralPartialEq for PipelineColorBlendAttachmentState[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.