pub trait DistillUnit {
// Required method
fn distill_with_name<'a>(
&self,
name: impl Into<Cow<'a, str>>,
) -> XmlNode<'a>;
}
Required Methods§
fn distill_with_name<'a>(&self, name: impl Into<Cow<'a, str>>) -> XmlNode<'a>
Object Safety§
This trait is not object safe.