enum DebugPrint {
Print,
NoPrint,
}
=>
mod detail {
pub enum DebugPrint {
Print,
NoPrint,
}
}
+ maybe some reexports for convenience.
This is the official™ fix and it’s described in the tracking issue.
enum DebugPrint {
Print,
NoPrint,
}
=>
mod detail {
pub enum DebugPrint {
Print,
NoPrint,
}
}
+ maybe some reexports for convenience.
This is the official™ fix and it’s described in the tracking issue.