#[repr(C)]pub struct PipelineColorBlendStateCreateInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: PipelineColorBlendStateCreateFlags,
pub logicOpEnable: Bool32,
pub logicOp: LogicOp,
pub attachmentCount: u32,
pub pAttachments: *const PipelineColorBlendAttachmentState,
pub blendConstants: [f32; 4],
}Fields§
§sType: StructureType§pNext: *const c_void§flags: PipelineColorBlendStateCreateFlags§logicOpEnable: Bool32§logicOp: LogicOp§attachmentCount: u32§pAttachments: *const PipelineColorBlendAttachmentState§blendConstants: [f32; 4]Auto Trait Implementations§
impl Freeze for PipelineColorBlendStateCreateInfo
impl RefUnwindSafe for PipelineColorBlendStateCreateInfo
impl !Send for PipelineColorBlendStateCreateInfo
impl !Sync for PipelineColorBlendStateCreateInfo
impl Unpin for PipelineColorBlendStateCreateInfo
impl UnwindSafe for PipelineColorBlendStateCreateInfo
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