pub struct CoordinatesList {
pub name: String,
pub npoints: i64,
pub position_coords: Vec<Vec<f64>>,
}Fields§
§name: String§npoints: i64§position_coords: Vec<Vec<f64>>Trait Implementations§
Source§impl Clone for CoordinatesList
impl Clone for CoordinatesList
Source§fn clone(&self) -> CoordinatesList
fn clone(&self) -> CoordinatesList
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 CoordinatesList
impl Debug for CoordinatesList
Source§impl PartialEq for CoordinatesList
impl PartialEq for CoordinatesList
Source§fn eq(&self, other: &CoordinatesList) -> bool
fn eq(&self, other: &CoordinatesList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CoordinatesList
Auto Trait Implementations§
impl Freeze for CoordinatesList
impl RefUnwindSafe for CoordinatesList
impl Send for CoordinatesList
impl Sync for CoordinatesList
impl Unpin for CoordinatesList
impl UnsafeUnpin for CoordinatesList
impl UnwindSafe for CoordinatesList
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