Get a mutable reference to the underlying writer.
(&mut self)
| 644 | |
| 645 | /// Get a mutable reference to the underlying writer. |
| 646 | pub fn inner_mut(&mut self) -> &mut W { |
| 647 | &mut self.writer |
| 648 | } |
| 649 | |
| 650 | /// Consume this writer and return the underlying writer. |
| 651 | pub fn into_inner(self) -> W { |
no outgoing calls