pub trait ResilientStoreError:
Error
+ Send
+ Sync
+ 'static {
// Required method
fn is_connection_issue(&self) -> bool;
}Expand description
Classifies store errors that should trigger a one-way downgrade to the in-process mirror store.