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
pub trait FromPositionalRow {
// Required method
fn from_positional_row(row: &str) -> PositionalResult<Self>
where Self: Sized;
}
implement this trait to mark something as parsable from a row of a positional file