pub enum PolygonSegment {
Point(Coord),
Arc(Arc),
ArcSegment(ArcSegment),
}Expand description
A polygon segment.
Variants§
Trait Implementations§
source§impl Debug for PolygonSegment
impl Debug for PolygonSegment
source§impl PartialEq for PolygonSegment
impl PartialEq for PolygonSegment
impl StructuralPartialEq for PolygonSegment
Auto Trait Implementations§
impl Freeze for PolygonSegment
impl RefUnwindSafe for PolygonSegment
impl Send for PolygonSegment
impl Sync for PolygonSegment
impl Unpin for PolygonSegment
impl UnwindSafe for PolygonSegment
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