ValueExt

Trait ValueExt 

Source
pub trait ValueExt {
    // Required method
    async fn sync(&mut self, direction: SyncDirection) -> Result<()>;
}

Required Methods§

Source

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", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T: ValueTypeMarker> ValueExt for Value<T>

Source§

async fn sync(&mut self, direction: SyncDirection) -> Result<()>

Implementors§