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§
Sourcefn 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,
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).