| 134 | } |
| 135 | |
| 136 | trait Transcode { |
| 137 | fn write(&mut self, bytes: &[u8]) -> PyResult<()>; |
| 138 | |
| 139 | fn flush(&mut self) -> PyResult<()>; |
| 140 | |
| 141 | fn buffer(&self) -> &[u8]; |
| 142 | } |
| 143 | |
| 144 | struct Inner<const E: u8> { |
| 145 | fsm: DbnFsm, |
nothing calls this directly
no outgoing calls
no test coverage detected