(length: usize)
| 73 | } |
| 74 | |
| 75 | fn skip_packing(length: usize) -> bool { |
| 76 | length <= 2 // Packing takes at least 2 bytes, so it can only expand <= 2 bytes. |
| 77 | } |
| 78 | |
| 79 | pub trait Byte: SizedInt {} |
| 80 | impl Byte for u8 {} |
no outgoing calls
no test coverage detected