Skip to main content

Qry

Trait Qry 

Source
pub trait Qry<'a, K, S>
where S: Stream<Item = K> + Send + 'a, K: Serialize + Debug,
{ // Required method fn qry( self, map: &'a Arc<Map>, ) -> impl Stream<Item = Result<Handle<'_>>> + Send + 'a; }

Required Methods§

Source

fn qry( 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> Qry<'a, K, S> for S
where Self: 'a, S: Stream<Item = K> + Send + 'a, K: Serialize + Debug + 'a,