Returns a displayable version of the `ExtFuncData`, with or without extra context to prettify the output.
(
&'a self,
params: Option<&'a FunctionParameters>,
)
| 327 | /// Returns a displayable version of the `ExtFuncData`, with or without extra context to |
| 328 | /// prettify the output. |
| 329 | pub fn display<'a>( |
| 330 | &'a self, |
| 331 | params: Option<&'a FunctionParameters>, |
| 332 | ) -> DisplayableExtFuncData<'a> { |
| 333 | DisplayableExtFuncData { |
| 334 | ext_func: self, |
| 335 | params, |
| 336 | } |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | /// A displayable `ExtFuncData`, with extra context to prettify the output. |
no outgoing calls