Writes the spec (name and signature) of 'func' to 'w' as text.
(w: &mut dyn Write, func: &Function)
| 200 | |
| 201 | /// Writes the spec (name and signature) of 'func' to 'w' as text. |
| 202 | pub fn write_function_spec(w: &mut dyn Write, func: &Function) -> fmt::Result { |
| 203 | write!(w, "{}{}", func.name, func.signature) |
| 204 | } |
| 205 | |
| 206 | //---------------------------------------------------------------------- |
| 207 | // |
no outgoing calls
no test coverage detected