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()