Trait ical::line::LineRead[][src]

pub trait LineRead {
    fn next_line(&mut self) -> Option<Line>;
}
Expand description

A trait generic for implementing line reading use crate::by PropertyParser.

Required methods

Return the next line unwrapped and formated.

Implementors