fix: usability

This commit is contained in:
Sevki 2024-11-10 11:45:54 +00:00
parent 636e1f51e4
commit 1ddeb08c8e

View file

@ -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<OkId> for PathSafe {
fn from(okid: OkId) -> Self {