pub trait GetTechAssetWithLstTag<LstId, AssetId>: Sized {
    // Required method
    fn get_tech_asset_with_lst_tag(
        tag: LstId,
        asset_id: AssetId
    ) -> Result<Self, ()>;
}

Required Methods§

source

fn get_tech_asset_with_lst_tag( tag: LstId, asset_id: AssetId ) -> Result<Self, ()>

Implementors§