From 5746fba565ae5e9b8b239f32fe9f6183f9006b80 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Sun, 14 Apr 2024 12:26:03 +0200 Subject: [PATCH] add useful validator function --- satrs/src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/satrs/src/lib.rs b/satrs/src/lib.rs index f6b43e6..2f2715e 100644 --- a/satrs/src/lib.rs +++ b/satrs/src/lib.rs @@ -72,6 +72,12 @@ impl ValidatorU16Id for hashbrown::HashSet { } } +impl ValidatorU16Id for u16 { + fn validate(&self, id: u16) -> bool { + id == *self + } +} + impl ValidatorU16Id for [u16] { fn validate(&self, id: u16) -> bool { self.binary_search(&id).is_ok()