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

pub trait ScanFromOctal<'a>: Sized {
    fn scan_from_octal(s: &'a str) -> Result<(Self, usize)ScanErrorKind>;
}

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(s: &'a str) -> Result<(Self, usize)ScanErrorKind>

Perform a scan on the given input.

See: ScanFromStr::scan_from.

Implementors