radix_common/traits/
non_fungible_data.rs1use crate::data::scrypto::ScryptoSbor;
2
3pub trait NonFungibleData: ScryptoSbor {
5 const MUTABLE_FIELDS: &'static [&'static str];
6}
7
8impl NonFungibleData for () {
9 const MUTABLE_FIELDS: &'static [&'static str] = &[];
10}