• pm_me_your_quackers@lemmy.world
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    edit-2
    7 months ago
    trait HttpService {
        async fn fetch(&self, url: Url) -> HtmlBody;
    //  ^^^^^^^^ desugars to:
    //  fn fetch(&self, url: Url) -> impl Future;
    }
    
    

    Man I’ve been waiting for this to be stabilized for a long time. So excited about it.