Trait advtools::input::InputItem[][src]

pub trait InputItem where
    Self: Sized
{ fn read_part(tok: &mut impl Iterator<Item = &'static str>) -> Option<Self>; }
Expand description

Trait implemented for all types that can be parsed from an input line.

Required methods

Take parts from the iterator and try to parse them into Self.

Implementations on Foreign Types

Implementors