pub trait DisplayAs {
// Required method
fn fmt_as(&self, df: DisplayFormat, f: &mut Formatter<'_>) -> Result;
// Provided method
fn child_names(&self) -> Option<Vec<String>> { ... }
}
Expand description
Configurable display trait for expressions.