Trait rdcl_aoc_helpers::input::WithAsMultilineRecords[][src]

pub trait WithAsMultilineRecords {
    fn as_multiline_records<T: MultilineFromStr>(
        &self
    ) -> Result<Vec<T>, <T as MultilineFromStr>::Err>; }
Expand description

This trait allows you to easily convert an object to a vec of items of the required type.

Required methods

Convert to a list of records of the requested type.

Implementations on Foreign Types

Implementors