pub trait Scan: Sized {
    fn scan<C: CharSource>(scanner: &mut Scanner<C>) -> Result<Self, ScanError>;
}
Available on crate feature master only.
Expand description

A type that can by scanned from a master file.

Required Methods

Scans a value from a master file.

Implementations on Foreign Types

Implementors