(buf: &mut &[u8])
| 363 | Tag0::new(mask).put(buf); |
| 364 | if let Some(u) = self.is_unsafe { |
| 365 | put_bool_field(u, buf); |
| 366 | } |
| 367 | if let Some(l) = self.lvls { |
| 368 | Tag0::new(l).put(buf); |
| 369 | } |
| 370 | if let Some(c) = self.cidx { |
| 371 | Tag0::new(c).put(buf); |
| 372 | } |
| 373 | if let Some(p) = self.params { |
| 374 | Tag0::new(p).put(buf); |
| 375 | } |
| 376 | if let Some(f) = self.fields { |
| 377 | Tag0::new(f).put(buf); |
| 378 | } |
nothing calls this directly
no test coverage detected