pub trait Printer:
Sized
+ PrettyAst<Span>
+ Default
+ HasLinkedItemGraph {
const NAME: &'static str = _;
// Required method
fn resugaring_phases() -> Vec<Box<dyn Resugaring>>;
}Expand description
A printer defines a list of resugaring phases.
Provided Associated Constants§
Required Methods§
Sourcefn resugaring_phases() -> Vec<Box<dyn Resugaring>>
fn resugaring_phases() -> Vec<Box<dyn Resugaring>>
A list of resugaring phases.
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.