Function get_reference_tables
Source pub async fn get_reference_tables() -> Result<Vec<ReferenceTable>, Error>
Expand description
§get_reference_tables()
Lista as tabelas de referência existentes.
§Retorno
Result<Vec<ReferenceTable>, Error>
§Exemplo
use brasilapi::fipe;
#[tokio::main]
async fn main() {
let reference_tables = fipe::get_reference_tables().await.unwrap();
}