Skip to main content

DagExportPullData

Trait DagExportPullData 

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

Required Methods§

Source

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

Export CloneData for vertexes in the given set. The set is typically calculated by only(heads, common).

Implementors§

Source§

impl<IS, M, P, S> DagExportPullData 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,