Fixing more errors.

This commit is contained in:
Tom Alexander
2023-09-03 12:45:12 -04:00
parent 0b009511ff
commit 0d438a8e0f
3 changed files with 17 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
#[derive(Debug)]
pub struct GlobalSettings<'s> {
#[allow(dead_code)]
placeholder: Option<&'s str>,
}

View File

@@ -12,6 +12,7 @@ pub trait ContextMatcher =
for<'b, 'r, 's> Fn(RefContext<'b, 'r, 's>, OrgSource<'s>) -> Res<OrgSource<'s>, OrgSource<'s>>;
pub type DynContextMatcher<'c> = dyn ContextMatcher + 'c;
pub trait Matcher = for<'s> Fn(OrgSource<'s>) -> Res<OrgSource<'s>, OrgSource<'s>>;
#[allow(dead_code)]
pub type DynMatcher<'c> = dyn Matcher + 'c;
pub use exiting::ExitClass;