pub struct LayerEffectStroke {
pub present: Option<bool>,
pub show_in_dialog: Option<bool>,
pub enabled: Option<bool>,
pub overprint: Option<bool>,
pub size: Option<UnitsValue>,
pub position: Option<StrokePosition>,
pub fill_type: Option<StrokeFillType>,
pub blend_mode: Option<BlendMode>,
pub opacity: Option<f64>,
pub color: Option<Color>,
pub gradient: Option<GradientWithExtra>,
pub pattern: Option<EffectPattern>,
}Expand description
TS LayerEffectStroke.
Fields§
§present: Option<bool>§show_in_dialog: Option<bool>§enabled: Option<bool>§overprint: Option<bool>§size: Option<UnitsValue>§position: Option<StrokePosition>§fill_type: Option<StrokeFillType>§blend_mode: Option<BlendMode>§opacity: Option<f64>§color: Option<Color>§gradient: Option<GradientWithExtra>(EffectSolidGradient | EffectNoiseGradient) & ExtraGradientInfo
pattern: Option<EffectPattern>EffectPattern & {} (TODO: additional pattern info upstream)
Trait Implementations§
Source§impl Clone for LayerEffectStroke
impl Clone for LayerEffectStroke
Source§fn clone(&self) -> LayerEffectStroke
fn clone(&self) -> LayerEffectStroke
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 LayerEffectStroke
impl Debug for LayerEffectStroke
Source§impl Default for LayerEffectStroke
impl Default for LayerEffectStroke
Source§fn default() -> LayerEffectStroke
fn default() -> LayerEffectStroke
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LayerEffectStroke
impl RefUnwindSafe for LayerEffectStroke
impl Send for LayerEffectStroke
impl Sync for LayerEffectStroke
impl Unpin for LayerEffectStroke
impl UnsafeUnpin for LayerEffectStroke
impl UnwindSafe for LayerEffectStroke
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