1 2 3 4 5 6 7
use google_search::search; fn main() { if let Err(e) = search("Rust crates.io") { eprintln!("search failed: {}", e); } }