pub trait NftPermission<InnerCollectionType> {
    fn can_create(collection_type: &InnerCollectionType) -> bool;
    fn can_mint(collection_type: &InnerCollectionType) -> bool;
    fn can_transfer(collection_type: &InnerCollectionType) -> bool;
    fn can_burn(collection_type: &InnerCollectionType) -> bool;
    fn can_destroy(collection_type: &InnerCollectionType) -> bool;
    fn has_deposit(collection_type: &InnerCollectionType) -> bool;
}

Required Methods§

Implementors§