pub struct Stroke {
pub paint: Paint,
pub dasharray: Option<Vec<f32>>,
pub dashoffset: f32,
pub miterlimit: StrokeMiterlimit,
pub opacity: Opacity,
pub width: StrokeWidth,
pub linecap: LineCap,
pub linejoin: LineJoin,
}
Expand description
A stroke style.
Fields§
§paint: Paint
§dasharray: Option<Vec<f32>>
§dashoffset: f32
§miterlimit: StrokeMiterlimit
§opacity: Opacity
§width: StrokeWidth
§linecap: LineCap
§linejoin: LineJoin
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Stroke
impl !Send for Stroke
impl !Sync for Stroke
impl Unpin for Stroke
impl !UnwindSafe for Stroke
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