pub trait CanCreateWithNoSupply: Sized {
    type NonFungibleDataSchema: ScryptoCategorize + ScryptoEncode + ScryptoDecode;

    // Required method
    fn into_create_with_no_supply_invocation(
        self
    ) -> CreateWithNoSupply<Self::NonFungibleDataSchema>;
}

Required Associated Types§

Required Methods§

Implementors§