pub struct PathMark {
pub commands: Vec<PathCommand>,
pub fill: FillStyle,
pub stroke: StrokeStyle,
}Expand description
A general path (Bezier curves, complex shapes).
Fields§
§commands: Vec<PathCommand>SVG-like path commands.
fill: FillStyleFill style.
stroke: StrokeStyleStroke style.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathMark
impl RefUnwindSafe for PathMark
impl Send for PathMark
impl Sync for PathMark
impl Unpin for PathMark
impl UnsafeUnpin for PathMark
impl UnwindSafe for PathMark
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