Struct usvg_tree::filter::GaussianBlur
source · pub struct GaussianBlur {
pub input: Input,
pub std_dev_x: PositiveF64,
pub std_dev_y: PositiveF64,
}
Expand description
A Gaussian blur filter primitive.
feGaussianBlur
element in the SVG.
Fields§
§input: Input
Identifies input for the given filter primitive.
in
in the SVG.
std_dev_x: PositiveF64
A standard deviation along the X-axis.
stdDeviation
in the SVG.
std_dev_y: PositiveF64
A standard deviation along the Y-axis.
stdDeviation
in the SVG.
Trait Implementations§
source§impl Clone for GaussianBlur
impl Clone for GaussianBlur
source§fn clone(&self) -> GaussianBlur
fn clone(&self) -> GaussianBlur
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 more