Skip to main content

Get

Trait Get 

Source
pub trait Get<'a, K, S>
where Self: Sized, S: Stream<Item = K> + Send + 'a, K: AsRef<[u8]> + Send + Sync + 'a,
{ // Required method fn get( self, map: &'a Arc<Map>, ) -> impl Stream<Item = Result<Handle<'_>>> + Send + 'a; }

Required Methods§

Source

fn get( self, map: &'a Arc<Map>, ) -> impl Stream<Item = Result<Handle<'_>>> + Send + 'a

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a, K, S> Get<'a, K, S> for S
where Self: Sized, S: Stream<Item = K> + Send + 'a, K: AsRef<[u8]> + Send + Sync + 'a,