(e: nodedb_query::expr_parse::ExprParseError)
| 15 | |
| 16 | impl From<nodedb_query::expr_parse::ExprParseError> for Error { |
| 17 | fn from(e: nodedb_query::expr_parse::ExprParseError) -> Self { |
| 18 | Self::BadRequest { |
| 19 | detail: e.to_string(), |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | impl From<crate::control::pubsub::TopicError> for Error { |
nothing calls this directly
no test coverage detected