Returns the function name associated with this symbol. Note that this may not be present with malformed debug information, or the debug information may not include it. Also note that the symbol is frequently mangled, so you might need to run some form of demangling over it.
(&self)
| 665 | /// frequently mangled, so you might need to run some form of demangling |
| 666 | /// over it. |
| 667 | pub fn name(&self) -> Option<&str> { |
| 668 | self.name.as_deref() |
| 669 | } |
| 670 | |
| 671 | /// Returns the source code filename this symbol was defined in. |
| 672 | /// |
no outgoing calls
no test coverage detected