Skip to main content

HumanizeDisplay

Trait HumanizeDisplay 

Source
pub trait HumanizeDisplay: Sized {
    // Required method
    fn humanize<'a, M: HumanizerMode>(
        e: &HumanizedExpr<'a, Self, M>,
        f: &mut Formatter<'_>,
    ) -> Result;
}

Required Methods§

Source

fn humanize<'a, M: HumanizerMode>( e: &HumanizedExpr<'a, Self, M>, f: &mut Formatter<'_>, ) -> Result

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl HumanizeDisplay for StableRow

Delegates to the Row rendering of the wrapped row.

Source§

fn humanize<'a, M: HumanizerMode>( e: &HumanizedExpr<'a, Self, M>, f: &mut Formatter<'_>, ) -> Result

Implementors§