pub struct ComponentTransfer {
pub input: Input,
pub func_r: TransferFunction,
pub func_g: TransferFunction,
pub func_b: TransferFunction,
pub func_a: TransferFunction,
}Expand description
A component-wise remapping filter primitive.
feComponentTransfer element in the SVG.
Fields§
§input: InputIdentifies input for the given filter primitive.
in in the SVG.
func_r: TransferFunctionfeFuncR in the SVG.
func_g: TransferFunctionfeFuncG in the SVG.
func_b: TransferFunctionfeFuncB in the SVG.
func_a: TransferFunctionfeFuncA in the SVG.
Trait Implementations§
Source§impl Clone for ComponentTransfer
impl Clone for ComponentTransfer
Source§fn clone(&self) -> ComponentTransfer
fn clone(&self) -> ComponentTransfer
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ComponentTransfer
impl RefUnwindSafe for ComponentTransfer
impl Send for ComponentTransfer
impl Sync for ComponentTransfer
impl Unpin for ComponentTransfer
impl UnwindSafe for ComponentTransfer
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