pub trait ParseableFromLine where
Self: Sized + 'static, {
fn parse_from_line(
context: &LineParsingContext<'_, '_, '_, '_>
) -> Result<Self, ParserError>;
}
pub trait ParseableFromLine where
Self: Sized + 'static, {
fn parse_from_line(
context: &LineParsingContext<'_, '_, '_, '_>
) -> Result<Self, ParserError>;
}