LogTransientStorageError

Trait LogTransientStorageError 

Source
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§

Source

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.

Implementations on Foreign Types§

Source§

impl<T> LogTransientStorageError for Result<T, Error>

Source§

fn log_storage_error(self, message: &str) -> Self

Implementors§