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
.
pub trait Distill {
// Required method
fn distill<'a>(&self) -> XmlNode<'a>;
// Provided method
fn distill_to_string(&self) -> String { ... }
}
See also super::generic::DistillUnit
.