pub trait ApplyEditScript {
// Required method
fn apply_to(
&self,
input: &str,
mode: Option<Mode>,
) -> Result<String, ApplyError>;
}
pub trait ApplyEditScript {
// Required method
fn apply_to(
&self,
input: &str,
mode: Option<Mode>,
) -> Result<String, ApplyError>;
}