Write the preamble to `w`. By default, this uses `write_entity_definition`.
(&mut self, w: &mut dyn Write, func: &Function)
| 35 | |
| 36 | /// Write the preamble to `w`. By default, this uses `write_entity_definition`. |
| 37 | fn write_preamble(&mut self, w: &mut dyn Write, func: &Function) -> Result<bool, fmt::Error> { |
| 38 | self.super_preamble(w, func) |
| 39 | } |
| 40 | |
| 41 | /// Default impl of `write_preamble` |
| 42 | fn super_preamble(&mut self, w: &mut dyn Write, func: &Function) -> Result<bool, fmt::Error> { |
no test coverage detected