#[repr(C)]pub enum PointInPolygonResult {
IsOn = 0,
IsInside = 1,
IsOutside = 2,
}Expand description
Result of point-in-polygon test Direct port from clipper.core.h line 1046
Variants§
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 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