Enum usvg_tree::filter::CompositeOperator
source · pub enum CompositeOperator {
Over,
In,
Out,
Atop,
Xor,
Arithmetic {
k1: f32,
k2: f32,
k3: f32,
k4: f32,
},
}
Expand description
An images compositing operation.
Variants§
Trait Implementations§
source§impl Clone for CompositeOperator
impl Clone for CompositeOperator
source§fn clone(&self) -> CompositeOperator
fn clone(&self) -> CompositeOperator
Returns a copy 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 CompositeOperator
impl Debug for CompositeOperator
source§impl PartialEq for CompositeOperator
impl PartialEq for CompositeOperator
source§fn eq(&self, other: &CompositeOperator) -> bool
fn eq(&self, other: &CompositeOperator) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CompositeOperator
impl StructuralPartialEq for CompositeOperator
Auto Trait Implementations§
impl RefUnwindSafe for CompositeOperator
impl Send for CompositeOperator
impl Sync for CompositeOperator
impl Unpin for CompositeOperator
impl UnwindSafe for CompositeOperator
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