#[cfg(feature ="handlebars")]modhandlebars;#[cfg(feature ="tera")]modtera;/// The helper type that implements `handlebars::HelperDef` with the
/// `handlebars` feature and `tera::Function` with the `tera` feature.
#[allow(dead_code)]pubstructFluentHelperFunction<L>{loader: L,
}impl<L>FluentHelperFunction<L>{pubfnnew(loader: L)->Self{Self{ loader }}}