pub enum SegmentPlaneIntersect {
NoIntersection,
Parallel,
LiesIn,
Intersection(Point3<f32>),
}Variants§
Trait Implementations§
Source§impl Debug for SegmentPlaneIntersect
impl Debug for SegmentPlaneIntersect
Source§impl PartialEq for SegmentPlaneIntersect
impl PartialEq for SegmentPlaneIntersect
impl StructuralPartialEq for SegmentPlaneIntersect
Auto Trait Implementations§
impl Freeze for SegmentPlaneIntersect
impl RefUnwindSafe for SegmentPlaneIntersect
impl Send for SegmentPlaneIntersect
impl Sync for SegmentPlaneIntersect
impl Unpin for SegmentPlaneIntersect
impl UnwindSafe for SegmentPlaneIntersect
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