Skip to main content

Query

Trait Query 

Source
pub trait Query {
    // Required method
    fn matching_ids(&self, tree: &Tree) -> Result<BTreeSet<u64>>;
}

Required Methods§

Source

fn matching_ids(&self, tree: &Tree) -> Result<BTreeSet<u64>>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<U> Query for U