(&self)
| 512 | /// if retried or if prerequisites are satisfied. |
| 513 | #[inline] |
| 514 | pub fn is_recoverable(&self) -> bool { |
| 515 | // Not-found and already-exists errors might be recoverable |
| 516 | // if the missing entity is created or the duplicate is handled |
| 517 | self.is_not_found() || self.is_already_exists() || self.is_invalid_state() |
| 518 | } |
| 519 | |
| 520 | // User Guidance |
| 521 |
nothing calls this directly
no test coverage detected