pub enum PointInPolygonResult {
On,
Inside,
Outside,
}Expand description
Point-in-polygon classification result.
点在多边形内外的判定结果。
Variants§
On
Point lies on an edge. / 点在边上。
Inside
Point strictly inside. / 点在内部。
Outside
Point strictly outside. / 点在外部。
Trait Implementations§
Source§impl Clone for PointInPolygonResult
impl Clone for PointInPolygonResult
Source§fn clone(&self) -> PointInPolygonResult
fn clone(&self) -> PointInPolygonResult
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 PointInPolygonResult
impl Debug for PointInPolygonResult
Source§impl Hash for PointInPolygonResult
impl Hash for PointInPolygonResult
Source§impl PartialEq for PointInPolygonResult
impl PartialEq for PointInPolygonResult
impl Copy for PointInPolygonResult
impl Eq for PointInPolygonResult
impl StructuralPartialEq for PointInPolygonResult
Auto Trait Implementations§
impl Freeze for PointInPolygonResult
impl RefUnwindSafe for PointInPolygonResult
impl Send for PointInPolygonResult
impl Sync for PointInPolygonResult
impl Unpin for PointInPolygonResult
impl UnsafeUnpin for PointInPolygonResult
impl UnwindSafe for PointInPolygonResult
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