Enum zng_view_api::AlphaType
source · #[repr(u8)]pub enum AlphaType {
Alpha = 0,
PremultipliedAlpha = 1,
}Expand description
Pixel color alpha type.
Variants§
Alpha = 0
Components are not pre-multiplied by alpha.
PremultipliedAlpha = 1
Components are pre-multiplied by alpha.
Trait Implementations§
source§impl<'de> Deserialize<'de> for AlphaType
impl<'de> Deserialize<'de> for AlphaType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for AlphaType
impl PartialEq for AlphaType
impl Copy for AlphaType
impl Eq for AlphaType
impl StructuralPartialEq for AlphaType
Auto Trait Implementations§
impl Freeze for AlphaType
impl RefUnwindSafe for AlphaType
impl Send for AlphaType
impl Sync for AlphaType
impl Unpin for AlphaType
impl UnwindSafe for AlphaType
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