Returns the size of the current queue of compressed data in bits. This includes some constant overhead unless the coder is completely empty (see [`num_words`](#method.num_words)). The returned value is a multiple of the bitlength of the compressed word type `Word`.
(&'a self)
| 408 | /// The returned value is a multiple of the bitlength of the compressed word |
| 409 | /// type `Word`. |
| 410 | pub fn num_bits<'a>(&'a self) -> usize |
| 411 | where |
| 412 | Backend: AsReadWords<'a, Word, Queue>, |
| 413 | Backend::AsReadWords: BoundedReadWords<Word, Queue>, |
| 414 | { |
| 415 | Word::BITS * self.num_words() |
| 416 | } |
| 417 | |
| 418 | pub fn bulk(&self) -> &Backend { |
| 419 | &self.bulk |