pub struct LayerEffectsInfo {
pub disabled: Option<bool>,
pub scale: Option<f64>,
pub drop_shadow: Option<Vec<LayerEffectShadow>>,
pub inner_shadow: Option<Vec<LayerEffectShadow>>,
pub outer_glow: Option<LayerEffectsOuterGlow>,
pub inner_glow: Option<LayerEffectInnerGlow>,
pub bevel: Option<LayerEffectBevel>,
pub solid_fill: Option<Vec<LayerEffectSolidFill>>,
pub satin: Option<LayerEffectSatin>,
pub stroke: Option<Vec<LayerEffectStroke>>,
pub gradient_overlay: Option<Vec<LayerEffectGradientOverlay>>,
pub pattern_overlay: Option<LayerEffectPatternOverlay>,
}Expand description
TS LayerEffectsInfo.
Fields§
§disabled: Option<bool>§scale: Option<f64>§drop_shadow: Option<Vec<LayerEffectShadow>>§inner_shadow: Option<Vec<LayerEffectShadow>>§outer_glow: Option<LayerEffectsOuterGlow>§inner_glow: Option<LayerEffectInnerGlow>§bevel: Option<LayerEffectBevel>§solid_fill: Option<Vec<LayerEffectSolidFill>>§satin: Option<LayerEffectSatin>§stroke: Option<Vec<LayerEffectStroke>>§gradient_overlay: Option<Vec<LayerEffectGradientOverlay>>§pattern_overlay: Option<LayerEffectPatternOverlay>not supported yet upstream because of Patt section
Trait Implementations§
Source§impl Clone for LayerEffectsInfo
impl Clone for LayerEffectsInfo
Source§fn clone(&self) -> LayerEffectsInfo
fn clone(&self) -> LayerEffectsInfo
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 LayerEffectsInfo
impl Debug for LayerEffectsInfo
Source§impl Default for LayerEffectsInfo
impl Default for LayerEffectsInfo
Source§fn default() -> LayerEffectsInfo
fn default() -> LayerEffectsInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LayerEffectsInfo
impl RefUnwindSafe for LayerEffectsInfo
impl Send for LayerEffectsInfo
impl Sync for LayerEffectsInfo
impl Unpin for LayerEffectsInfo
impl UnsafeUnpin for LayerEffectsInfo
impl UnwindSafe for LayerEffectsInfo
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