pub trait Query {
// Required method
fn matching_ids(&self, tree: &Tree) -> Result<BTreeSet<u64>>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait Query {
// Required method
fn matching_ids(&self, tree: &Tree) -> Result<BTreeSet<u64>>;
}This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".