pub trait Output {
// Required methods
fn print(&mut self, what: String) -> Result<()>;
fn output(&self) -> Option<String>;
}Expand description
Trait which Context is using to access or redirect the µcad code’s console output.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".