(&self)
| 43 | |
| 44 | impl BreakpointType { |
| 45 | pub fn as_str(&self) -> &'static str { |
| 46 | match self { |
| 47 | Self::Breakpoint => "Breakpoint", |
| 48 | Self::FunctionCall { .. } => "FunctionCall", |
| 49 | Self::FunctionReturn => "FunctionReturn", |
| 50 | Self::FutureEndpoint => "FutureEndpoint", |
| 51 | } |
| 52 | } |
| 53 | } |
no outgoing calls