(buf: &mut Vec<u8>, r: StrRef)
| 243 | } |
| 244 | |
| 245 | fn push_str_ref(buf: &mut Vec<u8>, r: StrRef) { |
| 246 | buf.extend_from_slice(&r.0.to_le_bytes()); |
| 247 | buf.extend_from_slice(&r.1.to_le_bytes()); |
| 248 | } |
| 249 | |
| 250 | pub struct Tables { |
| 251 | pub nodes: Vec<u8>, |
no outgoing calls
no test coverage detected