pub trait QueryStorage {
    type Id;
    // Required methods
    fn try_push(&mut self, id: Self::Id) -> bool;
    fn clear(&mut self);
}Expand description
Arbitrary storage for query results.
pub trait QueryStorage {
    type Id;
    // Required methods
    fn try_push(&mut self, id: Self::Id) -> bool;
    fn clear(&mut self);
}Arbitrary storage for query results.