pub enum SegmentLineRelation {
Left,
LeftTouch,
OnLine,
Intersects(Point2D),
Right,
RightTouch,
}
Variants§
Trait Implementations§
Source§impl Clone for SegmentLineRelation
impl Clone for SegmentLineRelation
Source§fn clone(&self) -> SegmentLineRelation
fn clone(&self) -> SegmentLineRelation
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 SegmentLineRelation
impl Debug for SegmentLineRelation
impl Copy for SegmentLineRelation
Auto Trait Implementations§
impl Freeze for SegmentLineRelation
impl RefUnwindSafe for SegmentLineRelation
impl Send for SegmentLineRelation
impl Sync for SegmentLineRelation
impl Unpin for SegmentLineRelation
impl UnwindSafe for SegmentLineRelation
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