pub struct CartesianPoint {
pub name: String,
pub coordinates: Vec<f64>,
}Fields§
§name: String§coordinates: Vec<f64>Trait Implementations§
Source§impl Clone for CartesianPoint
impl Clone for CartesianPoint
Source§fn clone(&self) -> CartesianPoint
fn clone(&self) -> CartesianPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CartesianPoint
impl Debug for CartesianPoint
Source§impl PartialEq for CartesianPoint
impl PartialEq for CartesianPoint
Source§fn eq(&self, other: &CartesianPoint) -> bool
fn eq(&self, other: &CartesianPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CartesianPoint
Auto Trait Implementations§
impl Freeze for CartesianPoint
impl RefUnwindSafe for CartesianPoint
impl Send for CartesianPoint
impl Sync for CartesianPoint
impl Unpin for CartesianPoint
impl UnsafeUnpin for CartesianPoint
impl UnwindSafe for CartesianPoint
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