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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.