pub enum EffectMode {
FilterContent,
Backdrop,
}Variants§
FilterContent
Render children to an offscreen intermediate, then filter and composite the result.
Backdrop
Sample already-rendered backdrop behind the group, filter it, then draw children on top.
Trait Implementations§
Source§impl Clone for EffectMode
impl Clone for EffectMode
Source§fn clone(&self) -> EffectMode
fn clone(&self) -> EffectMode
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 EffectMode
impl Debug for EffectMode
Source§impl PartialEq for EffectMode
impl PartialEq for EffectMode
impl Copy for EffectMode
impl Eq for EffectMode
impl StructuralPartialEq for EffectMode
Auto Trait Implementations§
impl Freeze for EffectMode
impl RefUnwindSafe for EffectMode
impl Send for EffectMode
impl Sync for EffectMode
impl Unpin for EffectMode
impl UnsafeUnpin for EffectMode
impl UnwindSafe for EffectMode
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