pub struct BufferPool {
pub free_buffers: RefCell<Vec<Pin<Vec<u8>>>>,
/* private fields */
}Fields§
§free_buffers: RefCell<Vec<Pin<Vec<u8>>>>Implementations§
Auto Trait Implementations§
impl !Freeze for BufferPool
impl !RefUnwindSafe for BufferPool
impl !Sync for BufferPool
impl Send for BufferPool
impl Unpin for BufferPool
impl UnsafeUnpin for BufferPool
impl UnwindSafe for BufferPool
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more