(&self)
| 2513 | |
| 2514 | impl PendingWrite { |
| 2515 | fn as_bytes(&self) -> &[u8] { |
| 2516 | match self { |
| 2517 | Self::Utf8(s) => s.as_bytes(), |
| 2518 | Self::Bytes(b) => b.as_bytes(), |
| 2519 | } |
| 2520 | } |
| 2521 | } |
| 2522 | |
| 2523 | impl PendingWrites { |
no outgoing calls
no test coverage detected