Python `bytes`; transits raw, never decoded as UTF-8. Deref reads it as a slice.
| 395 | |
| 396 | /// Python `bytes`; transits raw, never decoded as UTF-8. Deref reads it as a slice. |
| 397 | pub struct Bytes(pub Vec<u8>); |
| 398 | |
| 399 | impl core::ops::Deref for Bytes { |
| 400 | type Target = [u8]; |
no outgoing calls
no test coverage detected