mirror of
https://github.com/actix/actix-web.git
synced 2024-12-17 13:46:36 +00:00
Promote BigBytes from pub(super) to pub(crate)
This commit is contained in:
parent
b492b27e4a
commit
09b460c72e
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ use bytes::{Buf, BufMut, Bytes, BytesMut};
|
||||||
|
|
||||||
const SIXTYFOUR_KB: usize = 1024 * 64;
|
const SIXTYFOUR_KB: usize = 1024 * 64;
|
||||||
|
|
||||||
pub(super) struct BigBytes {
|
pub(crate) struct BigBytes {
|
||||||
buffer: BytesMut,
|
buffer: BytesMut,
|
||||||
frozen: VecDeque<Bytes>,
|
frozen: VecDeque<Bytes>,
|
||||||
frozen_len: usize,
|
frozen_len: usize,
|
||||||
|
|
Loading…
Reference in a new issue