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

Required Methods§

Implementors§