Trait MykoQuery

Source
pub trait MykoQuery {
    type Item;

    // Required method
    fn watch(&self, client: &MykoClient) -> impl Stream<Item = Vec<Self::Item>>;
}

Required Associated Types§

Required Methods§

Source

fn watch(&self, client: &MykoClient) -> impl Stream<Item = Vec<Self::Item>>

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§