pub struct VectorStroke {Show 15 fields
pub stroke_enabled: Option<bool>,
pub fill_enabled: Option<bool>,
pub line_width: Option<UnitsValue>,
pub line_dash_offset: Option<UnitsValue>,
pub miter_limit: Option<f64>,
pub line_cap_type: Option<LineCapType>,
pub line_join_type: Option<LineJoinType>,
pub line_alignment: Option<LineAlignment>,
pub scale_lock: Option<bool>,
pub stroke_adjust: Option<bool>,
pub line_dash_set: Option<Vec<UnitsValue>>,
pub blend_mode: Option<BlendMode>,
pub opacity: Option<f64>,
pub content: Option<VectorContent>,
pub resolution: Option<f64>,
}Expand description
TS LayerAdditionalInfo.vectorStroke.
Fields§
§stroke_enabled: Option<bool>§fill_enabled: Option<bool>§line_width: Option<UnitsValue>§line_dash_offset: Option<UnitsValue>§miter_limit: Option<f64>§line_cap_type: Option<LineCapType>§line_join_type: Option<LineJoinType>§line_alignment: Option<LineAlignment>§scale_lock: Option<bool>§stroke_adjust: Option<bool>§line_dash_set: Option<Vec<UnitsValue>>§blend_mode: Option<BlendMode>§opacity: Option<f64>§content: Option<VectorContent>§resolution: Option<f64>Trait Implementations§
Source§impl Clone for VectorStroke
impl Clone for VectorStroke
Source§fn clone(&self) -> VectorStroke
fn clone(&self) -> VectorStroke
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 VectorStroke
impl Debug for VectorStroke
Source§impl Default for VectorStroke
impl Default for VectorStroke
Source§fn default() -> VectorStroke
fn default() -> VectorStroke
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VectorStroke
impl RefUnwindSafe for VectorStroke
impl Send for VectorStroke
impl Sync for VectorStroke
impl Unpin for VectorStroke
impl UnsafeUnpin for VectorStroke
impl UnwindSafe for VectorStroke
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