Trait ical::line::LineRead

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

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

Required Methods§

source

fn next_line(&mut self) -> Option<Line>

Return the next line unwrapped and formated.

Implementors§