#[non_exhaustive]pub enum ImageFilter {
GaussianBlur {
sigma: f32,
},
}Expand description
ImageFilter allows specifying the type of filter to apply to images.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GaussianBlur
The filter shall be a gaussian blur with given sigma as standard deviation.
Trait Implementations§
Source§impl Clone for ImageFilter
impl Clone for ImageFilter
Source§fn clone(&self) -> ImageFilter
fn clone(&self) -> ImageFilter
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 moreSource§impl Debug for ImageFilter
impl Debug for ImageFilter
impl Copy for ImageFilter
Auto Trait Implementations§
impl Freeze for ImageFilter
impl RefUnwindSafe for ImageFilter
impl Send for ImageFilter
impl Sync for ImageFilter
impl Unpin for ImageFilter
impl UnwindSafe for ImageFilter
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