rustc_middle::ty::ir_print

Trait IrPrint

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

Required Methods§

Source

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

Source

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

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§

Source§

impl<T> IrPrint<T> for TyCtxt<'_>
where T: Copy + for<'a, 'tcx> Lift<TyCtxt<'tcx>, Lifted: Print<'tcx, FmtPrinter<'a, 'tcx>>>,