Это синтаксический сахар типа unwrap(). Сейчас напишу точнее.
https://doc.rust-lang.org/book/ch09-02-recoverable-errors-with-result.html#a-shortcut-for-propagating-errors-the--operator
anyhow?
match io::stdin().read_line(&mut input) { Ok(v) => v, Err(e) => return Err(From::from(e)), }
return Err(e.into())
Обсуждают сегодня