rustc_type_ir::ir_print

Trait IrPrint

Source
pub trait IrPrint<T> {
    // Required methods
    fn print(t: &T, fmt: &mut Formatter<'_>) -> Result;
    fn print_debug(t: &T, fmt: &mut Formatter<'_>) -> Result;
}

Required Methods§

Source

fn print(t: &T, fmt: &mut Formatter<'_>) -> Result

Source

fn print_debug(t: &T, fmt: &mut Formatter<'_>) -> Result

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.

Implementors§