Trait scan_rules::scanner::ScanFromOctal [] [src]

pub trait ScanFromOctal<'a>: Sized {
    fn scan_from_octal<I: ScanInput<'a>>(s: I) -> Result<(Self, usize)ScanError>;
}

This trait defines scanning a type from an octal representation.

This should be implemented to match implementations of std::fmt::Octal.

Required Methods

fn scan_from_octal<I: ScanInput<'a>>(s: I) -> Result<(Self, usize)ScanError>

Perform a scan on the given input.

See: ScanFromStr::scan_from.

Implementors