pub trait ReserveCollectionId<CollectionId> {
    fn is_id_reserved(id: CollectionId) -> bool;
}

Required Methods§

This function returns true if collection id is from the reserved range, false otherwise.

Implementors§