pub struct Blend {
pub input1: Input,
pub input2: Input,
pub mode: BlendMode,
}
Expand description
A blend filter primitive.
feBlend
element in the SVG.
Fields§
§input1: Input
Identifies input for the given filter primitive.
in
in the SVG.
input2: Input
Identifies input for the given filter primitive.
in2
in the SVG.
mode: BlendMode
A blending mode.
mode
in the SVG.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Blend
impl Send for Blend
impl Sync for Blend
impl Unpin for Blend
impl UnwindSafe for Blend
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