pub trait ValueExt {
// Required method
async fn sync(&mut self, direction: SyncDirection) -> Result<()>;
}Required Methods§
Sourceasync fn sync(&mut self, direction: SyncDirection) -> Result<()>
async fn sync(&mut self, direction: SyncDirection) -> Result<()>
Synchronize data between Rust & the runtime.
See the top-level documentation for more information on synchronization.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".