(mut self, code: &'static str)
| 195 | } |
| 196 | |
| 197 | fn with_code(mut self, code: &'static str) -> Self { |
| 198 | self.code = Some(code); |
| 199 | self |
| 200 | } |
| 201 | |
| 202 | fn with_span_fallback(mut self, span: Option<Span>) -> Self { |
| 203 | self.span = self.span.or(span); |
no outgoing calls
no test coverage detected