Configure a failing I/O future for this pending planner.
(mut self, message: impl Into<String>)
| 356 | |
| 357 | /// Configure a failing I/O future for this pending planner. |
| 358 | pub(crate) fn with_error(mut self, message: impl Into<String>) -> Self { |
| 359 | self.result = Err(MockError(message.into())); |
| 360 | self |
| 361 | } |
| 362 | |
| 363 | /// Build a `MockPlanBuilder` containing only this pending planner. |
| 364 | pub(crate) fn build(self) -> MockPlanBuilder { |
no test coverage detected