pub trait LogTransientStorageError {
// Required method
fn log_storage_error(self, message: &str) -> Self;
}Expand description
For now StorageError can happen at any time from ViewClient because of the used isolation level + running ViewClient in a separate thread.
Required Methods§
fn log_storage_error(self, message: &str) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.