radix_common/traits/
non_fungible_data.rs

1use crate::data::scrypto::ScryptoSbor;
2
3/// Represents the data structure of a non-fungible.
4pub trait NonFungibleData: ScryptoSbor {
5    const MUTABLE_FIELDS: &'static [&'static str];
6}
7
8impl NonFungibleData for () {
9    const MUTABLE_FIELDS: &'static [&'static str] = &[];
10}