(w: &mut W, query: &str)
| 343 | } |
| 344 | |
| 345 | fn write_repr_sql<W: Write>(w: &mut W, query: &str) -> Result { |
| 346 | writeln!(w, r#"<div class="sql repr">"#)?; |
| 347 | writeln!(w, "<pre><code>{query}</code></pre>")?; |
| 348 | writeln!(w, "</div>") |
| 349 | } |
| 350 | |
| 351 | fn write_key_values<W: Write>(w: &mut W, pairs: &[(&'static str, &dyn Debug)]) -> Result { |
| 352 | writeln!(w, r#"<div class="key-values">"#)?; |
no outgoing calls
no test coverage detected