diff --git a/ntex-bytes/src/string.rs b/ntex-bytes/src/string.rs index 56cd8fc2..3b7a3d1c 100644 --- a/ntex-bytes/src/string.rs +++ b/ntex-bytes/src/string.rs @@ -217,7 +217,7 @@ impl TryFrom<&[u8]> for ByteString { #[inline] fn try_from(value: &[u8]) -> Result { - if utf8::is_valid(&value) { + if utf8::is_valid(value) { Ok(ByteString(Bytes::copy_from_slice(value))) } else { Err(()) diff --git a/ntex-router/src/lib.rs b/ntex-router/src/lib.rs index 746d7742..f507f362 100644 --- a/ntex-router/src/lib.rs +++ b/ntex-router/src/lib.rs @@ -11,7 +11,7 @@ mod tree; pub use self::de::PathDeserializer; pub use self::path::{Path, PathIter}; pub use self::resource::ResourceDef; -pub use self::router::{Router, RouterBuilder}; +pub use self::router::{ResourceId, Router, RouterBuilder}; #[doc(hidden)] pub struct ResourceInfo; diff --git a/ntex-router/src/router.rs b/ntex-router/src/router.rs index d381889f..297729bd 100644 --- a/ntex-router/src/router.rs +++ b/ntex-router/src/router.rs @@ -1,8 +1,8 @@ use super::tree::Tree; use super::{IntoPattern, Resource, ResourceDef, ResourcePath}; -#[derive(Debug, Copy, Clone, PartialEq)] -pub struct ResourceId(pub u16); +#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] +pub struct ResourceId(pub(crate) u16); /// Resource router. #[derive(Clone)]