Microsoft failed to rotate certificates for winget CDN on time
cdn.winget.microsoft.com111 pointsby yjh050267 comments
fn do_something() -> Box<Future<Item=(), Error=Error>> {
let val = match do_result() {
Ok(x) => x,
Err(e) => return Box::new(err(e.into())),
};
// do something with `val`
unimplemented!();
}