pub trait ObjectPersistence:
Send
+ Sync
+ 'static {
// Required method
fn is_persistent(&self, storage: StorageId) -> bool;
}Required Methods§
fn is_persistent(&self, storage: StorageId) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".