pub enum EffectGradient {
Solid(EffectSolidGradient),
Noise(EffectNoiseGradient),
}Expand description
TS union EffectSolidGradient | EffectNoiseGradient.
Variants§
Solid(EffectSolidGradient)
Noise(EffectNoiseGradient)
Trait Implementations§
Source§impl Clone for EffectGradient
impl Clone for EffectGradient
Source§fn clone(&self) -> EffectGradient
fn clone(&self) -> EffectGradient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectGradient
impl RefUnwindSafe for EffectGradient
impl Send for EffectGradient
impl Sync for EffectGradient
impl Unpin for EffectGradient
impl UnsafeUnpin for EffectGradient
impl UnwindSafe for EffectGradient
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