Struct gfx_core::state::Blend [−][src]
pub struct Blend {
pub color: BlendChannel,
pub alpha: BlendChannel,
}Fields
color: BlendChannel
alpha: BlendChannel
Methods
impl Blend[src]
impl Blendpub fn new(eq: Equation, src: Factor, dst: Factor) -> Blend[src]
pub fn new(eq: Equation, src: Factor, dst: Factor) -> BlendCreate a new blend state with a given equation.
Trait Implementations
impl PartialOrd<Blend> for Blend[src]
impl PartialOrd<Blend> for Blendfn partial_cmp(&self, other: &Blend) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Blend) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Blend) -> bool[src]
fn lt(&self, other: &Blend) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Blend) -> bool[src]
fn le(&self, other: &Blend) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Blend) -> bool[src]
fn gt(&self, other: &Blend) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Blend) -> bool[src]
fn ge(&self, other: &Blend) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Hash for Blend[src]
impl Hash for Blendfn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Clone for Blend[src]
impl Clone for Blendfn clone(&self) -> Blend[src]
fn clone(&self) -> BlendReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Default for Blend[src]
impl Default for Blendimpl Debug for Blend[src]
impl Debug for Blendfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Copy for Blend[src]
impl Copy for Blendimpl Eq for Blend[src]
impl Eq for Blendimpl PartialEq<Blend> for Blend[src]
impl PartialEq<Blend> for Blendfn eq(&self, other: &Blend) -> bool[src]
fn eq(&self, other: &Blend) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Blend) -> bool[src]
fn ne(&self, other: &Blend) -> boolThis method tests for !=.
impl From<Blend> for ColorInfo[src]
impl From<Blend> for ColorInfo