Trait Indentable

Source
pub trait Indentable {
    // Required methods
    fn no_indent(self) -> Self;
    fn indent(self) -> Self;
}

Required Methods§

Source

fn no_indent(self) -> Self

Source

fn indent(self) -> Self

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.

Implementations on Foreign Types§

Source§

impl Indentable for ScrollView<FlexiLoggerView>

Source§

fn no_indent(self) -> Self

Changes a FlexiLoggerView, which is contained in a ScrollView, to not indent messages spanning multiple lines.

Source§

fn indent(self) -> Self

Changes a FlexiLoggerView, which is contained in a ScrollView, to indent messages spanning multiple lines.

Implementors§