pub trait Persist:
Debug
+ Send
+ Sync
+ DynClone {
type Input: Chunk;
type Output: Chunk;
// Required methods
fn setup<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn store<'life0, 'async_trait>(
&'life0 self,
node: Node<Self::Input>,
) -> Pin<Box<dyn Future<Output = Result<Node<Self::Output>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn batch_store<'life0, 'async_trait>(
&'life0 self,
nodes: Vec<Node<Self::Input>>,
) -> Pin<Box<dyn Future<Output = IndexingStream<Self::Output>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
// Provided methods
fn batch_size(&self) -> Option<usize> { ... }
fn name(&self) -> &'static str { ... }
}
Expand description
Persists nodes