pub struct PathObject {
pub path: BezPath,
pub matrix: Affine,
pub fill_rule: FillRule,
pub stroke: bool,
}Expand description
A path, as painted.
Fields§
§path: BezPathThe path in its own coordinate space.
matrix: AffineThe matrix taking it to the page.
fill_rule: FillRuleHow the interior is filled.
stroke: boolWhether the outline is stroked.
Trait Implementations§
Source§impl Clone for PathObject
impl Clone for PathObject
Source§fn clone(&self) -> PathObject
fn clone(&self) -> PathObject
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 PathObject
impl Debug for PathObject
Source§impl PartialEq for PathObject
impl PartialEq for PathObject
impl StructuralPartialEq for PathObject
Auto Trait Implementations§
impl Freeze for PathObject
impl RefUnwindSafe for PathObject
impl Send for PathObject
impl Sync for PathObject
impl Unpin for PathObject
impl UnsafeUnpin for PathObject
impl UnwindSafe for PathObject
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