1 2 3 4 5 6 7 8 9
use super::ReifyProcessor; pub struct CopyProcessor; impl ReifyProcessor for CopyProcessor { fn render(&self, source: &str) -> anyhow::Result<String> { Ok(String::from(source)) } }