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.
Required Methods§
fn is_connection_issue(&self) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".