Searched defs:BytesMut (Results 1 – 2 of 2) sorted by relevance
60 pub struct BytesMut { struct61 ptr: NonNull<u8>,62 len: usize,63 cap: usize,64 data: *mut Shared,117 impl BytesMut { implementation141 pub fn with_capacity(capacity: usize) -> BytesMut { in with_capacity()288 pub fn split_off(&mut self, at: usize) -> BytesMut { in split_off()329 pub fn split(&mut self) -> BytesMut { in split()361 pub fn split_to(&mut self, at: usize) -> BytesMut { in split_to()[all …]
45 impl Debug for BytesMut { implementation