pub trait QueryStorage { type Id; // Required methods fn try_push(&mut self, id: Self::Id) -> bool; fn clear(&mut self); }
Clears the storage.