pub struct ColorTargetState {
pub alpha_blend: BlendState,
pub color_blend: BlendState,
pub write_mask: ColorWrite,
}
Expand description
Describes the color state of a render pipeline.
Fields§
§alpha_blend: BlendState
The alpha blending that is used for this pipeline.
color_blend: BlendState
The color blending that is used for this pipeline.
write_mask: ColorWrite
Mask which enables or disables writes to different target channels.
Trait Implementations§
Source§impl Clone for ColorTargetState
impl Clone for ColorTargetState
Source§fn clone(&self) -> ColorTargetState
fn clone(&self) -> ColorTargetState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ColorTargetState
impl Debug for ColorTargetState
Source§impl Hash for ColorTargetState
impl Hash for ColorTargetState
Source§impl PartialEq for ColorTargetState
impl PartialEq for ColorTargetState
impl Copy for ColorTargetState
impl Eq for ColorTargetState
impl StructuralPartialEq for ColorTargetState
Auto Trait Implementations§
impl Freeze for ColorTargetState
impl RefUnwindSafe for ColorTargetState
impl Send for ColorTargetState
impl Sync for ColorTargetState
impl Unpin for ColorTargetState
impl UnwindSafe for ColorTargetState
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