Consume this writer and return the underlying writer.
(self)
| 649 | |
| 650 | /// Consume this writer and return the underlying writer. |
| 651 | pub fn into_inner(self) -> W { |
| 652 | self.writer |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | impl<W: Write> VertexBuffer for Writer<W> { |
no outgoing calls