pub type BoxedParserFn = Box<dyn Fn(&[u8]) -> Result<Input> + Send + Sync>;
A |&[u8]| -> Result<Input, ConfigurationParserError> Fn to parse contents.
|&[u8]| -> Result<Input, ConfigurationParserError>
pub struct BoxedParserFn(/* private fields */);