pub trait Distill {
// Required method
fn distill<'a>(&self) -> XmlNode<'a>;
// Provided method
fn distill_to_string(&self) -> String { ... }
}Expand description
See also super::generic::DistillUnit.
Required Methods§
Provided Methods§
fn distill_to_string(&self) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".