pub struct ColorTargetState {
pub blend: Option<BlendState>,
pub write_mask: ColorWrites,
}
Expand description
Sets blend modes and color masks for a render target
Loosely equivalent to wgpu::ColorTargetState
Fields§
§blend: Option<BlendState>
§write_mask: ColorWrites
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 Default for ColorTargetState
impl Default for ColorTargetState
Source§fn default() -> ColorTargetState
fn default() -> ColorTargetState
Returns the “default value” for a type. Read more
Source§impl Hash for ColorTargetState
impl Hash for ColorTargetState
Source§impl PartialEq for ColorTargetState
impl PartialEq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.