Add back Send

This commit is contained in:
Alex 2022-06-02 22:05:57 +02:00
parent 43704afb29
commit 364061453c
Signed by: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ pub struct Tree(pub(crate) Arc<dyn IDb>, pub(crate) usize);
pub type Value<'a> = Cow<'a, [u8]>;
pub type ValueIter<'a> =
Box<dyn std::iter::Iterator<Item = Result<(Value<'a>, Value<'a>)>> + 'a>;
Box<dyn std::iter::Iterator<Item = Result<(Value<'a>, Value<'a>)>> + Send + 'a>;
pub type Exporter<'a> =
Box<dyn std::iter::Iterator<Item = Result<(String, ValueIter<'a>)>> + 'a>;