pub struct CompressorWriterCustomAlloc<W: Write, BufferType: SliceWrapperMut<u8>, Alloc: BrotliAlloc>(_);
Implementations
sourceimpl<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
sourceimpl<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>
sourcefn 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
sourcefn 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
sourcefn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬 This is a nightly-only experimental API. (
can_vector
)Determines if this Write
r has an efficient write_vectored
implementation. Read more
1.0.0 · sourcefn 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
sourcefn 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> RefUnwindSafe for CompressorWriterCustomAlloc<W, BufferType, Alloc> where
Alloc: RefUnwindSafe,
BufferType: RefUnwindSafe,
W: RefUnwindSafe,
<Alloc as Allocator<Command>>::AllocatedMemory: RefUnwindSafe,
<Alloc as Allocator<i32>>::AllocatedMemory: RefUnwindSafe,
<Alloc as Allocator<u16>>::AllocatedMemory: RefUnwindSafe,
<Alloc as Allocator<u32>>::AllocatedMemory: RefUnwindSafe,
<Alloc as Allocator<u8>>::AllocatedMemory: RefUnwindSafe,
impl<W, BufferType, Alloc> Send for CompressorWriterCustomAlloc<W, BufferType, Alloc> where
Alloc: Send,
BufferType: Send,
W: Send,
<Alloc as Allocator<Command>>::AllocatedMemory: Send,
<Alloc as Allocator<i32>>::AllocatedMemory: Send,
<Alloc as Allocator<u16>>::AllocatedMemory: Send,
<Alloc as Allocator<u32>>::AllocatedMemory: Send,
<Alloc as Allocator<u8>>::AllocatedMemory: Send,
impl<W, BufferType, Alloc> Sync for CompressorWriterCustomAlloc<W, BufferType, Alloc> where
Alloc: Sync,
BufferType: Sync,
W: Sync,
<Alloc as Allocator<Command>>::AllocatedMemory: Sync,
<Alloc as Allocator<i32>>::AllocatedMemory: Sync,
<Alloc as Allocator<u16>>::AllocatedMemory: Sync,
<Alloc as Allocator<u32>>::AllocatedMemory: Sync,
<Alloc as Allocator<u8>>::AllocatedMemory: Sync,
impl<W, BufferType, Alloc> Unpin for CompressorWriterCustomAlloc<W, BufferType, Alloc> where
Alloc: Unpin,
BufferType: Unpin,
W: Unpin,
<Alloc as Allocator<Command>>::AllocatedMemory: Unpin,
<Alloc as Allocator<i32>>::AllocatedMemory: Unpin,
<Alloc as Allocator<u16>>::AllocatedMemory: Unpin,
<Alloc as Allocator<u32>>::AllocatedMemory: Unpin,
<Alloc as Allocator<u8>>::AllocatedMemory: Unpin,
impl<W, BufferType, Alloc> UnwindSafe for CompressorWriterCustomAlloc<W, BufferType, Alloc> where
Alloc: UnwindSafe,
BufferType: UnwindSafe,
W: UnwindSafe,
<Alloc as Allocator<Command>>::AllocatedMemory: UnwindSafe,
<Alloc as Allocator<i32>>::AllocatedMemory: UnwindSafe,
<Alloc as Allocator<u16>>::AllocatedMemory: UnwindSafe,
<Alloc as Allocator<u32>>::AllocatedMemory: UnwindSafe,
<Alloc as Allocator<u8>>::AllocatedMemory: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more