Trait PrettyPrint

Source
pub trait PrettyPrint {
    // Required method
    fn pretty_print(&self) -> String;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl PrettyPrint for Identifier

Source§

impl PrettyPrint for NameID

Source§

impl<T> PrettyPrint for Option<T>
where T: PrettyPrint,

Source§

impl<T> PrettyPrint for &T
where T: PrettyPrint,

Source§

impl<T> PrettyPrint for Loc<T>
where T: PrettyPrint,

Implementors§