pub struct PolygonVertex(/* private fields */);Expand description
Polygon vertex.
PolygonVertex = control point index + polygon end marker.
Implementations§
Source§impl PolygonVertex
impl PolygonVertex
Trait Implementations§
Source§impl Clone for PolygonVertex
impl Clone for PolygonVertex
Source§fn clone(&self) -> PolygonVertex
fn clone(&self) -> PolygonVertex
Returns a duplicate of the value. Read more
1.0.0 · 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 PolygonVertex
impl Debug for PolygonVertex
Source§impl From<&PolygonVertex> for ControlPointIndex
impl From<&PolygonVertex> for ControlPointIndex
Source§fn from(pv: &PolygonVertex) -> Self
fn from(pv: &PolygonVertex) -> Self
Converts to this type from the input type.
Source§impl From<&PolygonVertex> for IntoCpiWithPolyVerts
impl From<&PolygonVertex> for IntoCpiWithPolyVerts
Source§fn from(i: &PolygonVertex) -> Self
fn from(i: &PolygonVertex) -> Self
Converts to this type from the input type.
Source§impl From<&PolygonVertex> for IntoPvWithTriVerts
impl From<&PolygonVertex> for IntoPvWithTriVerts
Source§fn from(i: &PolygonVertex) -> Self
fn from(i: &PolygonVertex) -> Self
Converts to this type from the input type.
Source§impl From<PolygonVertex> for ControlPointIndex
impl From<PolygonVertex> for ControlPointIndex
Source§fn from(pv: PolygonVertex) -> Self
fn from(pv: PolygonVertex) -> Self
Converts to this type from the input type.
Source§impl From<PolygonVertex> for IntoCpiWithPolyVerts
impl From<PolygonVertex> for IntoCpiWithPolyVerts
Source§fn from(i: PolygonVertex) -> Self
fn from(i: PolygonVertex) -> Self
Converts to this type from the input type.
Source§impl From<PolygonVertex> for IntoPvWithTriVerts
impl From<PolygonVertex> for IntoPvWithTriVerts
Source§fn from(i: PolygonVertex) -> Self
fn from(i: PolygonVertex) -> Self
Converts to this type from the input type.
Source§impl Hash for PolygonVertex
impl Hash for PolygonVertex
Source§impl Ord for PolygonVertex
impl Ord for PolygonVertex
Source§fn cmp(&self, other: &PolygonVertex) -> Ordering
fn cmp(&self, other: &PolygonVertex) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PolygonVertex
impl PartialEq for PolygonVertex
Source§impl PartialOrd for PolygonVertex
impl PartialOrd for PolygonVertex
impl Copy for PolygonVertex
impl Eq for PolygonVertex
impl StructuralPartialEq for PolygonVertex
Auto Trait Implementations§
impl Freeze for PolygonVertex
impl RefUnwindSafe for PolygonVertex
impl Send for PolygonVertex
impl Sync for PolygonVertex
impl Unpin for PolygonVertex
impl UnwindSafe for PolygonVertex
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