pub trait QueryStorage {
    type Id;

    fn try_push(&mut self, id: Self::Id) -> bool;
    fn clear(&mut self);
}

Required Associated Types§

Required Methods§

Clears the storage.

Implementations on Foreign Types§

Implementors§