Trait kailua_types::ty::Display [] [src]

pub trait Display: Debug + Sized {
    fn fmt_displayed(&self, f: &mut Formatter, st: &DisplayState) -> Result;

    fn display<'b, C>(&'b self, ctx: C) -> Displayed<'b, Self, C> { ... }
}

Human-readable description of various types requiring the type context.

Expected to implement std::fmt::Display.

Required Methods

Provided Methods

Implementors