Fetch trading markets from a cryptocurrency exchange.
```rust use cryptomarkets::{fetchmarkets, MarketType};
fn main() { let markets = fetchmarkets("Binance", MarketType::Spot).unwrap(); println!("{}", serdejson::tostringpretty(&markets).unwrap()) } ```