Trait FromPositionalRow

Source
pub trait FromPositionalRow {
    // Required method
    fn from_positional_row(row: &str) -> PositionalResult<Self>
       where Self: Sized;
}
Expand description

implement this trait to mark something as parsable from a row of a positional file

Required Methods§

Source

fn from_positional_row(row: &str) -> PositionalResult<Self>
where Self: Sized,

Implementors§