pub struct Point3f {
pub x: f32,
pub y: f32,
pub z: f32,
}
Expand description
3D point with single-precision floating-point coordinates
Fields§
§x: f32
§y: f32
§z: f32
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Point3f
impl<'de> Deserialize<'de> for Point3f
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 Point3f
impl StructuralPartialEq for Point3f
Auto Trait Implementations§
impl Freeze for Point3f
impl RefUnwindSafe for Point3f
impl Send for Point3f
impl Sync for Point3f
impl Unpin for Point3f
impl UnwindSafe for Point3f
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