pub trait AsyncGraphMut: TryGraph {
// Required method
async fn async_insert(
&mut self,
triple: Triple<Self::Resource>,
) -> Result<(), Self::Error>;
}Expand description
Async mutable graph.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<D> AsyncGraphMut for Dwhere
D: TryGraphMut,
Any fallible mutable graph can be used, synchronously, as an asynchronous mutable graph.