Struct brotli::enc::writer::CompressorWriterCustomAlloc
source · pub struct CompressorWriterCustomAlloc<W: Write, BufferType: SliceWrapperMut<u8>, Alloc: BrotliAlloc>(/* private fields */);
Implementations§
source§impl<W: Write, BufferType: SliceWrapperMut<u8>, Alloc: BrotliAlloc> CompressorWriterCustomAlloc<W, BufferType, Alloc>
impl<W: Write, BufferType: SliceWrapperMut<u8>, Alloc: BrotliAlloc> CompressorWriterCustomAlloc<W, BufferType, Alloc>
Trait Implementations§
source§impl<W: Write, BufferType: SliceWrapperMut<u8>, Alloc: BrotliAlloc> Write for CompressorWriterCustomAlloc<W, BufferType, Alloc>
impl<W: Write, BufferType: SliceWrapperMut<u8>, Alloc: BrotliAlloc> Write for CompressorWriterCustomAlloc<W, BufferType, Alloc>
source§fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
Write a buffer into this writer, returning how many bytes were written. Read more
source§fn flush(&mut self) -> Result<(), Error>
fn flush(&mut self) -> Result<(), Error>
Flush this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)1.0.0 · source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations§
impl<W, BufferType, Alloc> Freeze for CompressorWriterCustomAlloc<W, BufferType, Alloc>where
BufferType: Freeze,
Alloc: Freeze,
<Alloc as Allocator<Command>>::AllocatedMemory: Freeze,
<Alloc as Allocator<u8>>::AllocatedMemory: Freeze,
<Alloc as Allocator<i32>>::AllocatedMemory: Freeze,
<Alloc as Allocator<u32>>::AllocatedMemory: Freeze,
W: Freeze,
<Alloc as Allocator<u16>>::AllocatedMemory: Freeze,
impl<W, BufferType, Alloc> !RefUnwindSafe for CompressorWriterCustomAlloc<W, BufferType, Alloc>
impl<W, BufferType, Alloc> Send for CompressorWriterCustomAlloc<W, BufferType, Alloc>where
BufferType: Send,
Alloc: Send,
<Alloc as Allocator<Command>>::AllocatedMemory: Send,
<Alloc as Allocator<u8>>::AllocatedMemory: Send,
<Alloc as Allocator<i32>>::AllocatedMemory: Send,
<Alloc as Allocator<u32>>::AllocatedMemory: Send,
W: Send,
<Alloc as Allocator<u16>>::AllocatedMemory: Send,
impl<W, BufferType, Alloc> Sync for CompressorWriterCustomAlloc<W, BufferType, Alloc>where
BufferType: Sync,
Alloc: Sync,
<Alloc as Allocator<Command>>::AllocatedMemory: Sync,
<Alloc as Allocator<u8>>::AllocatedMemory: Sync,
<Alloc as Allocator<i32>>::AllocatedMemory: Sync,
<Alloc as Allocator<u32>>::AllocatedMemory: Sync,
W: Sync,
<Alloc as Allocator<u16>>::AllocatedMemory: Sync,
impl<W, BufferType, Alloc> Unpin for CompressorWriterCustomAlloc<W, BufferType, Alloc>where
BufferType: Unpin,
Alloc: Unpin,
<Alloc as Allocator<Command>>::AllocatedMemory: Unpin,
<Alloc as Allocator<u8>>::AllocatedMemory: Unpin,
<Alloc as Allocator<i32>>::AllocatedMemory: Unpin,
<Alloc as Allocator<u32>>::AllocatedMemory: Unpin,
W: Unpin,
<Alloc as Allocator<u16>>::AllocatedMemory: Unpin,
impl<W, BufferType, Alloc> !UnwindSafe for CompressorWriterCustomAlloc<W, BufferType, Alloc>
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