Result<i32, Error>
where
I: Iterator<Item = char>,
{
let mut raw = String::new();
while input.peek().unwrap().is_digit(10) {
raw.push(input.next().unwrap());
}
raw::parse::<i32>()
}
> use of undeclared crate or module raw
потому что нужно писать raw.parse(), а не raw::parse()
Обсуждают сегодня