From 08a99f49c3ec5b3c6a0be834cfb6396fdfb4d948 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Sat, 12 Nov 2022 17:52:59 +0100 Subject: [PATCH] Derive fewer traits for `PartialSurfaceVertex` It won't be able to support all of them going forward. --- crates/fj-kernel/src/partial/objects/vertex.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj-kernel/src/partial/objects/vertex.rs b/crates/fj-kernel/src/partial/objects/vertex.rs index f442691e3..75b6c7539 100644 --- a/crates/fj-kernel/src/partial/objects/vertex.rs +++ b/crates/fj-kernel/src/partial/objects/vertex.rs @@ -80,7 +80,7 @@ impl From<&Vertex> for PartialVertex { /// A partial [`SurfaceVertex`] /// /// See [`crate::partial`] for more information. -#[derive(Clone, Debug, Default, Eq, PartialEq, Hash, Ord, PartialOrd)] +#[derive(Clone, Debug, Default)] pub struct PartialSurfaceVertex { /// The position of the [`SurfaceVertex`] pub position: Option>,