pub struct Point3D(pub f64, pub f64, pub f64);
Expand description
Definition of a 3D Point. May represent WebMercator Lon-Lat or S2Geometry S-T with a z-value
Tuple Fields§
§0: f64
§1: f64
§2: f64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Point3D
impl<'de> Deserialize<'de> for Point3D
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<Point3D> for PointOrPoint3D
impl From<Point3D> for PointOrPoint3D
impl Copy for Point3D
impl GetXYZ for Point3D
impl StructuralPartialEq for Point3D
Auto Trait Implementations§
impl Freeze for Point3D
impl RefUnwindSafe for Point3D
impl Send for Point3D
impl Sync for Point3D
impl Unpin for Point3D
impl UnwindSafe for Point3D
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