#[repr(transparent)]pub struct BlendFactor(_);Expand description
Implementations
sourceimpl BlendFactor
impl BlendFactor
sourceimpl BlendFactor
impl BlendFactor
pub const ZERO: BlendFactor = Self(0)
pub const ONE: BlendFactor = Self(1)
pub const SRC_COLOR: BlendFactor = Self(2)
pub const ONE_MINUS_SRC_COLOR: BlendFactor = Self(3)
pub const DST_COLOR: BlendFactor = Self(4)
pub const ONE_MINUS_DST_COLOR: BlendFactor = Self(5)
pub const SRC_ALPHA: BlendFactor = Self(6)
pub const ONE_MINUS_SRC_ALPHA: BlendFactor = Self(7)
pub const DST_ALPHA: BlendFactor = Self(8)
pub const ONE_MINUS_DST_ALPHA: BlendFactor = Self(9)
pub const CONSTANT_COLOR: BlendFactor = Self(10)
pub const ONE_MINUS_CONSTANT_COLOR: BlendFactor = Self(11)
pub const CONSTANT_ALPHA: BlendFactor = Self(12)
pub const ONE_MINUS_CONSTANT_ALPHA: BlendFactor = Self(13)
pub const SRC_ALPHA_SATURATE: BlendFactor = Self(14)
pub const SRC1_COLOR: BlendFactor = Self(15)
pub const ONE_MINUS_SRC1_COLOR: BlendFactor = Self(16)
pub const SRC1_ALPHA: BlendFactor = Self(17)
pub const ONE_MINUS_SRC1_ALPHA: BlendFactor = Self(18)
Trait Implementations
sourceimpl Clone for BlendFactor
impl Clone for BlendFactor
sourcefn clone(&self) -> BlendFactor
fn clone(&self) -> BlendFactor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for BlendFactor
impl Debug for BlendFactor
sourceimpl Default for BlendFactor
impl Default for BlendFactor
sourcefn default() -> BlendFactor
fn default() -> BlendFactor
Returns the “default value” for a type. Read more
sourceimpl Hash for BlendFactor
impl Hash for BlendFactor
sourceimpl Ord for BlendFactor
impl Ord for BlendFactor
sourceimpl PartialEq<BlendFactor> for BlendFactor
impl PartialEq<BlendFactor> for BlendFactor
sourcefn eq(&self, other: &BlendFactor) -> bool
fn eq(&self, other: &BlendFactor) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &BlendFactor) -> bool
fn ne(&self, other: &BlendFactor) -> bool
This method tests for !=.
sourceimpl PartialOrd<BlendFactor> for BlendFactor
impl PartialOrd<BlendFactor> for BlendFactor
sourcefn partial_cmp(&self, other: &BlendFactor) -> Option<Ordering>
fn partial_cmp(&self, other: &BlendFactor) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for BlendFactor
impl Eq for BlendFactor
impl StructuralEq for BlendFactor
impl StructuralPartialEq for BlendFactor
Auto Trait Implementations
impl RefUnwindSafe for BlendFactor
impl Send for BlendFactor
impl Sync for BlendFactor
impl Unpin for BlendFactor
impl UnwindSafe for BlendFactor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more