#[repr(C)]pub struct PipelineColorBlendAttachmentState {
pub blendEnable: Bool32,
pub srcColorBlendFactor: BlendFactor,
pub dstColorBlendFactor: BlendFactor,
pub colorBlendOp: BlendOp,
pub srcAlphaBlendFactor: BlendFactor,
pub dstAlphaBlendFactor: BlendFactor,
pub alphaBlendOp: BlendOp,
pub colorWriteMask: ColorComponentFlags,
}
Fields§
§blendEnable: Bool32
§srcColorBlendFactor: BlendFactor
§dstColorBlendFactor: BlendFactor
§colorBlendOp: BlendOp
§srcAlphaBlendFactor: BlendFactor
§dstAlphaBlendFactor: BlendFactor
§alphaBlendOp: BlendOp
§colorWriteMask: ColorComponentFlags
Trait Implementations§
Source§impl Clone for PipelineColorBlendAttachmentState
impl Clone for PipelineColorBlendAttachmentState
Source§fn clone(&self) -> PipelineColorBlendAttachmentState
fn clone(&self) -> PipelineColorBlendAttachmentState
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for PipelineColorBlendAttachmentState
Auto Trait Implementations§
impl Freeze for PipelineColorBlendAttachmentState
impl RefUnwindSafe for PipelineColorBlendAttachmentState
impl Send for PipelineColorBlendAttachmentState
impl Sync for PipelineColorBlendAttachmentState
impl Unpin for PipelineColorBlendAttachmentState
impl UnwindSafe for PipelineColorBlendAttachmentState
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