pub trait Print { // Required methods fn print(&self); fn println(&self); }
let get = async move |url:&str|url.to_string().print();
let get = async move |url:&str|url.to_string().println();