pub enum CoordinateSystem {
LatLng,
Cartesian {
range: DataRange,
},
}Expand description
Coordinate system for clustering.
Variants§
LatLng
Latitude and longitude coordinates. Used for geo-spatial data.
Cartesian
Cartesian coordinates. Used for non-geospatial (i.e. microscopy, etc.) data.
Trait Implementations§
Source§impl Clone for CoordinateSystem
impl Clone for CoordinateSystem
Source§fn clone(&self) -> CoordinateSystem
fn clone(&self) -> CoordinateSystem
Returns a copy 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 moreAuto Trait Implementations§
impl !Freeze for CoordinateSystem
impl !RefUnwindSafe for CoordinateSystem
impl Send for CoordinateSystem
impl !Sync for CoordinateSystem
impl Unpin for CoordinateSystem
impl UnwindSafe for CoordinateSystem
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