pub struct Point3d {
pub x: f64,
pub y: f64,
pub z: f64,
}
Expand description
3D point with double-precision floating-point coordinates
Fields§
§x: f64
§y: f64
§z: f64
Implementations§
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
impl Copy 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