#[derive(Clone, Eq)]
pub struct TransformFn(pub(crate) Box<fn(String) -> String>);
impl std::fmt::Debug for TransformFn {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "<TransformFn>")
}
}
impl PartialEq for TransformFn {
fn eq(&self, _other: &Self) -> bool {
true
}
}