pub trait PredicateStorageRequirements: StorageRead<BlobData> {
// Required method
fn storage_error_to_string(error: Self::Error) -> String;
}
Expand description
Storage requirements for predicates.
Required Methods§
Sourcefn storage_error_to_string(error: Self::Error) -> String
fn storage_error_to_string(error: Self::Error) -> String
Converts the storage error to a string.
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.