Macro input

Source
macro_rules! input {
    (as $type: ty $(, $($token: tt)+)?) => { ... };
    ($($token: tt)*) => { ... };
}
Expand description

Similar to tiny_input!, except I/O and parse errors are wrapped into Error<E>.