pub trait NativeNonFungibleProof {
    // Required method
    fn non_fungible_local_ids<Y, E>(
        &self,
        api: &mut Y
    ) -> Result<IndexSet<NonFungibleLocalId>, E>
       where E: Debug + ScryptoCategorize + ScryptoDecode,
             Y: ClientObjectApi<E>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§