[−][src]Trait brotli_decompressor::io_wrappers::CustomWrite
this trait does not allow for transient errors: they must be retried in the underlying layer
this trait does not allow for transient errors: they must be retried in the underlying layer
fn write(&mut self, data: &[u8]) -> Result<usize, ErrType>fn flush(&mut self) -> Result<(), ErrType>impl<'a, OutputType: Write> CustomWrite<Error> for IoWriterWrapper<'a, OutputType>[src]fn write(&mut self, buf: &[u8]) -> Result<usize, Error>[src]fn flush(&mut self) -> Result<(), Error>[src]impl<ErrType, W: CustomWrite<ErrType>, BufferType: SliceWrapperMut<u8>, AllocU8: Allocator<u8>, AllocU32: Allocator<u32>, AllocHC: Allocator<HuffmanCode>> CustomWrite<ErrType> for DecompressorWriterCustomIo<ErrType, W, BufferType, AllocU8, AllocU32, AllocHC>[src]fn write(&mut self, buf: &[u8]) -> Result<usize, ErrType>[src]fn flush(&mut self) -> Result<(), ErrType>[src]impl<InputType: Write> CustomWrite<Error> for IntoIoWriter<InputType>[src]