Skip to content

Commit daee918

Browse files
committed
wip
1 parent 1b6a033 commit daee918

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/slice/slice_bytes/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ impl Slice {
2525
Self(Bytes::from_static(&[]))
2626
}
2727

28-
pub(crate) unsafe fn builder_unzeroed(len: usize) -> Builder {
28+
#[doc(hidden)]
29+
pub unsafe fn builder_unzeroed(len: usize) -> Builder {
2930
// Use `with_capacity` & `set_len`` to avoid zeroing the buffer
3031
let mut builder = Builder::with_capacity(len);
3132

0 commit comments

Comments
 (0)