[−][src]Trait bee_storage::access::AsStream
AsStream<'a, K, V> trait extends the StorageBackend with stream operation for the (key: K, value: V) pair;
therefore, it should be explicitly implemented for the corresponding StorageBackend.
Associated Types
Loading content...Required methods
#[must_use]pub fn stream<'async_trait>(
&'a self
) -> Pin<Box<dyn Future<Output = Result<Self::Stream, Self::Error>> + Send + 'async_trait>> where
'a: 'async_trait,
Self: 'async_trait, [src]
&'a self
) -> Pin<Box<dyn Future<Output = Result<Self::Stream, Self::Error>> + Send + 'async_trait>> where
'a: 'async_trait,
Self: 'async_trait,
Returns a Stream object for the provided <K, V> collection.