pub struct BezierPath {
pub open: bool,
pub operation: Option<BooleanOperation>,
pub knots: Vec<BezierKnot>,
pub fill_rule: FillRule,
}Expand description
TS BezierPath.
Fields§
§open: bool§operation: Option<BooleanOperation>§knots: Vec<BezierKnot>§fill_rule: FillRuleTrait Implementations§
Source§impl Clone for BezierPath
impl Clone for BezierPath
Source§fn clone(&self) -> BezierPath
fn clone(&self) -> BezierPath
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 moreAuto Trait Implementations§
impl Freeze for BezierPath
impl RefUnwindSafe for BezierPath
impl Send for BezierPath
impl Sync for BezierPath
impl Unpin for BezierPath
impl UnsafeUnpin for BezierPath
impl UnwindSafe for BezierPath
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