Remove unnecessary pubs.

This commit is contained in:
Tom Alexander 2022-11-26 21:28:57 -05:00
parent f645b0cb75
commit 67e95a0adc
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 5 additions and 5 deletions

View File

@ -12,15 +12,15 @@ pub trait OrgModeContext<'r> {
// todo // todo
} }
pub struct FailMatcherNode<'r> { struct FailMatcherNode<'r> {
pub fail_matcher: ChainBehavior<'r>, fail_matcher: ChainBehavior<'r>,
} }
pub struct PreviousElementNode<'r> { struct PreviousElementNode<'r> {
pub dummy: &'r str, dummy: &'r str,
} }
pub enum ChainBehavior<'r> { enum ChainBehavior<'r> {
AndParent(Option<&'r Matcher>), AndParent(Option<&'r Matcher>),
IgnoreParent(Option<&'r Matcher>), IgnoreParent(Option<&'r Matcher>),
} }