pub struct CompositeCurve {
pub name: String,
pub segments: Vec<CompositeCurveSegmentRef>,
pub self_intersect: Logical,
}Fields§
§name: String§segments: Vec<CompositeCurveSegmentRef>§self_intersect: LogicalTrait Implementations§
Source§impl Clone for CompositeCurve
impl Clone for CompositeCurve
Source§fn clone(&self) -> CompositeCurve
fn clone(&self) -> CompositeCurve
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 CompositeCurve
impl Debug for CompositeCurve
Source§impl PartialEq for CompositeCurve
impl PartialEq for CompositeCurve
Source§fn eq(&self, other: &CompositeCurve) -> bool
fn eq(&self, other: &CompositeCurve) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CompositeCurve
Auto Trait Implementations§
impl Freeze for CompositeCurve
impl RefUnwindSafe for CompositeCurve
impl Send for CompositeCurve
impl Sync for CompositeCurve
impl Unpin for CompositeCurve
impl UnsafeUnpin for CompositeCurve
impl UnwindSafe for CompositeCurve
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