Create structure for statistics cookies.
This commit is contained in:
13
src/parser/statistics_cookie.rs
Normal file
13
src/parser/statistics_cookie.rs
Normal file
@@ -0,0 +1,13 @@
|
||||
use super::Context;
|
||||
use crate::error::Res;
|
||||
use crate::parser::util::not_yet_implemented;
|
||||
use crate::parser::StatisticsCookie;
|
||||
|
||||
#[tracing::instrument(ret, level = "debug")]
|
||||
pub fn statistics_cookie<'r, 's>(
|
||||
context: Context<'r, 's>,
|
||||
input: &'s str,
|
||||
) -> Res<&'s str, StatisticsCookie<'s>> {
|
||||
not_yet_implemented()?;
|
||||
todo!()
|
||||
}
|
||||
Reference in New Issue
Block a user