Derive fewer traits for PartialSurfaceVertex

It won't be able to support all of them going forward.
This commit is contained in:
Hanno Braun 2022-11-12 17:52:59 +01:00
parent fe2fa1b8b7
commit 08a99f49c3

View File

@ -80,7 +80,7 @@ impl From<&Vertex> for PartialVertex {
/// A partial [`SurfaceVertex`] /// A partial [`SurfaceVertex`]
/// ///
/// See [`crate::partial`] for more information. /// See [`crate::partial`] for more information.
#[derive(Clone, Debug, Default, Eq, PartialEq, Hash, Ord, PartialOrd)] #[derive(Clone, Debug, Default)]
pub struct PartialSurfaceVertex { pub struct PartialSurfaceVertex {
/// The position of the [`SurfaceVertex`] /// The position of the [`SurfaceVertex`]
pub position: Option<Point<2>>, pub position: Option<Point<2>>,