pub struct Filter {
pub variant: FilterVariant,
pub name: String,
pub opacity: f64,
pub blend_mode: BlendMode,
pub enabled: bool,
pub has_options: bool,
pub foreground_color: Color,
pub background_color: Color,
}Expand description
TS Filter = FilterVariant & { ...common fields... }.
Fields§
§variant: FilterVariant§name: String§opacity: f64§blend_mode: BlendMode§enabled: bool§has_options: bool§foreground_color: Color§background_color: ColorTrait Implementations§
Auto Trait Implementations§
impl Freeze for Filter
impl RefUnwindSafe for Filter
impl Send for Filter
impl Sync for Filter
impl Unpin for Filter
impl UnsafeUnpin for Filter
impl UnwindSafe for Filter
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