pub trait RfqReader: Send + Sync {
// Required method
fn get_all_quote_providers_sync(&self) -> Result<Vec<QuoteProviderRecord>>;
}Expand description
Read-only quote provider queries.
Required Methods§
Sourcefn get_all_quote_providers_sync(&self) -> Result<Vec<QuoteProviderRecord>>
fn get_all_quote_providers_sync(&self) -> Result<Vec<QuoteProviderRecord>>
Load all registered quote providers.