Skip to main content

DagExportCloneData

Trait DagExportCloneData 

Source
pub trait DagExportCloneData {
    // Required method
    fn export_clone_data<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<CloneData<Vertex>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn export_clone_data<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<CloneData<Vertex>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Export CloneData for vertexes in the master group.

Implementors§

Source§

impl<IS, M, P, S> DagExportCloneData for AbstractDag<IdDag<IS>, M, P, S>
where IS: IdDagStore, IdDag<IS>: TryClone, M: IdConvert + TryClone + Send + Sync + 'static, P: TryClone + Send + Sync + 'static, S: TryClone + Send + Sync + 'static,