pub trait DeclFormatter<Id> {
// Required method
fn format_decl(&self, x: Id) -> String;
}
Expand description
Provided some id, print the declaration (not simply its name).
pub trait DeclFormatter<Id> {
// Required method
fn format_decl(&self, x: Id) -> String;
}
Provided some id, print the declaration (not simply its name).