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 1b6a033 commit daee918Copy full SHA for daee918
src/slice/slice_bytes/mod.rs
@@ -25,7 +25,8 @@ impl Slice {
25
Self(Bytes::from_static(&[]))
26
}
27
28
- pub(crate) unsafe fn builder_unzeroed(len: usize) -> Builder {
+ #[doc(hidden)]
29
+ pub unsafe fn builder_unzeroed(len: usize) -> Builder {
30
// Use `with_capacity` & `set_len`` to avoid zeroing the buffer
31
let mut builder = Builder::with_capacity(len);
32
0 commit comments