(&mut self, buf: &[u8])
| 974 | |
| 975 | impl Write for &PySocket { |
| 976 | fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> { |
| 977 | (&mut &*self.sock()?).write(buf) |
| 978 | } |
| 979 | |
| 980 | fn flush(&mut self) -> std::io::Result<()> { |
| 981 | (&mut &*self.sock()?).flush() |
no test coverage detected