1 2 3 4 5 6 7 8 9
use std::io::Cursor; use utf8_bufread::BufRead; fn main() { let _s = { let mut r = Cursor::new(""); r.read_str().unwrap() }; }