pub struct IntersectionPoint {
pub coordinates: Vec<f64>,
}Expand description
Point of intersection
Fields§
§coordinates: Vec<f64>Coordinates of the intersection point
Trait Implementations§
Source§impl Clone for IntersectionPoint
impl Clone for IntersectionPoint
Source§fn clone(&self) -> IntersectionPoint
fn clone(&self) -> IntersectionPoint
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 IntersectionPoint
impl Debug for IntersectionPoint
Source§impl PartialEq for IntersectionPoint
impl PartialEq for IntersectionPoint
impl StructuralPartialEq for IntersectionPoint
Auto Trait Implementations§
impl Freeze for IntersectionPoint
impl RefUnwindSafe for IntersectionPoint
impl Send for IntersectionPoint
impl Sync for IntersectionPoint
impl Unpin for IntersectionPoint
impl UnwindSafe for IntersectionPoint
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