[][src]Function zomato::get_daily_menu

pub async fn get_daily_menu<'_, '_>(
    city: &'_ str,
    restaurant: &'_ str
) -> Result<Vec<Menu>, Error>

Fetches daily manu of given restaurant.

You can get restaurant name by visiting it at Zomato using browser and copying it from the URL.

This returns heap-allocated menu, because iterator would require self-referential return value. If you happen to have some clever idea to work around this, I'll happily accept a PR.