pub trait Output {
// Provided methods
fn print_json(&self, _ctx: &Ctx) -> Result<()> { ... }
fn print_table(&self, _ctx: &Ctx) -> Result<()> { ... }
}Provided Methods§
fn print_json(&self, _ctx: &Ctx) -> Result<()>
fn print_table(&self, _ctx: &Ctx) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".