Code structure for fixed width area.

This commit is contained in:
Tom Alexander
2023-04-21 22:04:22 -04:00
parent f97ca7a67d
commit 5ae8ac61e5
7 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
use super::Context;
use crate::error::Res;
use crate::parser::FixedWidthArea;
#[tracing::instrument(ret, level = "debug")]
pub fn fixed_width_area<'r, 's>(
context: Context<'r, 's>,
input: &'s str,
) -> Res<&'s str, FixedWidthArea<'s>> {
todo!()
}