pub struct LayerEffectGradientOverlay {Show 14 fields
pub blend_mode: Option<String>,
pub present: Option<bool>,
pub show_in_dialog: Option<bool>,
pub enabled: Option<bool>,
pub opacity: Option<f64>,
pub align: Option<bool>,
pub scale: Option<f64>,
pub dither: Option<bool>,
pub reverse: Option<bool>,
pub gradient_type: Option<GradientStyle>,
pub offset: Option<PointF>,
pub gradient: Option<EffectGradient>,
pub interpolation_method: Option<InterpolationMethod>,
pub angle: Option<f64>,
}Expand description
TS LayerEffectGradientOverlay.
Fields§
§blend_mode: Option<String>NOTE: in TS this is string, not BlendMode.
present: Option<bool>§show_in_dialog: Option<bool>§enabled: Option<bool>§opacity: Option<f64>§align: Option<bool>§scale: Option<f64>§dither: Option<bool>§reverse: Option<bool>§gradient_type: Option<GradientStyle>TS field type
offset: Option<PointF>§gradient: Option<EffectGradient>§interpolation_method: Option<InterpolationMethod>§angle: Option<f64>degrees
Trait Implementations§
Source§impl Clone for LayerEffectGradientOverlay
impl Clone for LayerEffectGradientOverlay
Source§fn clone(&self) -> LayerEffectGradientOverlay
fn clone(&self) -> LayerEffectGradientOverlay
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 moreSource§impl Debug for LayerEffectGradientOverlay
impl Debug for LayerEffectGradientOverlay
Source§impl Default for LayerEffectGradientOverlay
impl Default for LayerEffectGradientOverlay
Source§fn default() -> LayerEffectGradientOverlay
fn default() -> LayerEffectGradientOverlay
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LayerEffectGradientOverlay
impl RefUnwindSafe for LayerEffectGradientOverlay
impl Send for LayerEffectGradientOverlay
impl Sync for LayerEffectGradientOverlay
impl Unpin for LayerEffectGradientOverlay
impl UnsafeUnpin for LayerEffectGradientOverlay
impl UnwindSafe for LayerEffectGradientOverlay
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