2023-09-02 19:15:47 -04:00
|
|
|
use crate::error::Res;
|
|
|
|
use crate::parser::OrgSource;
|
|
|
|
|
2023-09-04 13:26:11 -04:00
|
|
|
mod context;
|
2023-09-02 18:46:45 -04:00
|
|
|
mod exiting;
|
2023-09-04 13:00:41 -04:00
|
|
|
mod file_access_interface;
|
2023-09-02 20:46:17 -04:00
|
|
|
mod global_settings;
|
2023-09-02 18:46:45 -04:00
|
|
|
mod list;
|
|
|
|
mod parser_with_context;
|
|
|
|
|
2023-09-11 13:13:28 -04:00
|
|
|
pub(crate) type RefContext<'b, 'g, 'r, 's> = &'b Context<'g, 'r, 's>;
|
|
|
|
pub(crate) trait ContextMatcher = for<'b, 'g, 'r, 's> Fn(
|
2023-09-03 15:44:18 -04:00
|
|
|
RefContext<'b, 'g, 'r, 's>,
|
|
|
|
OrgSource<'s>,
|
|
|
|
) -> Res<OrgSource<'s>, OrgSource<'s>>;
|
2023-09-11 13:13:28 -04:00
|
|
|
type DynContextMatcher<'c> = dyn ContextMatcher + 'c;
|
|
|
|
pub(crate) trait Matcher = for<'s> Fn(OrgSource<'s>) -> Res<OrgSource<'s>, OrgSource<'s>>;
|
2023-09-03 12:45:12 -04:00
|
|
|
#[allow(dead_code)]
|
2023-09-11 13:13:28 -04:00
|
|
|
type DynMatcher<'c> = dyn Matcher + 'c;
|
2023-09-02 19:28:33 -04:00
|
|
|
|
2023-09-11 13:13:28 -04:00
|
|
|
pub(crate) use context::Context;
|
|
|
|
pub(crate) use context::ContextElement;
|
|
|
|
pub(crate) use context::ExitMatcherNode;
|
|
|
|
pub(crate) use exiting::ExitClass;
|
|
|
|
pub use file_access_interface::FileAccessInterface;
|
|
|
|
pub use file_access_interface::LocalFileAccessInterface;
|
|
|
|
pub use global_settings::GlobalSettings;
|
2023-09-15 22:31:15 -04:00
|
|
|
pub use global_settings::HeadlineLevelFilter;
|
2023-09-11 13:13:28 -04:00
|
|
|
pub(crate) use list::List;
|
|
|
|
pub(crate) use parser_with_context::parser_with_context;
|