use std::io::Read; pub struct Scanner { source: Source, } impl Scanner { pub fn new(source: Source) -> Self { Self { source } } }