We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2516bb commit 7bd56f6Copy full SHA for 7bd56f6
1 file changed
src/api/encoding.rs
@@ -21,7 +21,7 @@ const PATH_SEGMENT_ENCODE_SET: AsciiSet = QUERY_ENCODE_SET
21
.add(b'/');
22
23
/// Wrapper that escapes arguments for URL path segments.
24
-pub struct PathArg<A: Display>(pub A);
+pub(super) struct PathArg<A: Display>(pub(super) A);
25
26
/// Wrapper that escapes arguments for URL query segments.
27
pub(super) struct QueryArg<A: Display>(pub(super) A);
0 commit comments