pub trait Processor {
// Required method
fn process_element<'a>(
&'a self,
obj: &DefaultDicomObject,
elem: &'a InMemElement,
) -> Result<Option<Cow<'a, InMemElement>>>;
}
pub trait Processor {
// Required method
fn process_element<'a>(
&'a self,
obj: &DefaultDicomObject,
elem: &'a InMemElement,
) -> Result<Option<Cow<'a, InMemElement>>>;
}