Enum indenter::Format[][src]

pub enum Format<'a> {
    Uniform {
        indentation: &'static str,
    },
    Numbered {
        ind: usize,
    },
    Custom {
        inserter: &'a mut Inserter,
    },
}

The set of supported formats for indentation

Variants

Uniform

Insert uniform indentation before every line

This format takes a static string as input and inserts it after every newline

Fields of Uniform

indentation: &'static str

The string to insert as indentation

Numbered

Inserts a number before the first line

This format hard codes the indentation level to match the indentation from core::backtrace::Backtrace

Fields of Numbered

ind: usize

The index to insert before the first line of output

Custom

A custom indenter which is executed after every newline

Custom indenters are passed the current line number and the buffer to be written to as args

Fields of Custom

inserter: &'a mut Inserter

The custom indenter

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Format<'a>

impl<'a> !Send for Format<'a>

impl<'a> !Sync for Format<'a>

impl<'a> Unpin for Format<'a>

impl<'a> !UnwindSafe for Format<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.