From 1ddeb08c8e58cc6973739a6a8dd97e162e798824 Mon Sep 17 00:00:00 2001 From: Sevki Date: Sun, 10 Nov 2024 11:45:54 +0000 Subject: [PATCH] fix: usability --- src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index f1e0c7e..42b07fe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -551,7 +551,10 @@ impl std::convert::AsRef<[u8]> for OkId { /// A type that represents a path that is safe to use in a URL. #[repr(transparent)] -pub struct PathSafe(OkId); +pub struct PathSafe( + /// Innder okdi + pub OkId +); impl From for PathSafe { fn from(okid: OkId) -> Self {