pub trait GetLstIdAndTradingPairFromTechAsset<LstId, TradingPair> {
    // Required method
    fn get_lst_id_and_trading_pair_from_tech_asset(
        &self
    ) -> Option<(LstId, TradingPair)>;
}

Required Methods§

Implementors§