(&self)
| 37 | |
| 38 | impl Diagnostic for RemoteInvokeError { |
| 39 | fn code(&self) -> Option<Box<dyn std::fmt::Display>> { |
| 40 | let c = self.code.trim_start_matches('&'); |
| 41 | Some(Box::new(c.to_string())) |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | impl TryFrom<&str> for RemoteInvokeError { |
no test coverage detected