Struct debug_builders::DebugList [] [src]

#[must_use]
pub struct DebugList<'a, 'b> {
    // some fields omitted
}

A struct to help with fmt::Debug implementations.

Methods

impl<'a, 'b> DebugList<'a, 'b>

fn new(fmt: &'a mut Formatter<'b>) -> DebugList<'a, 'b>

Creates a new DebugList.

fn entry(self, entry: &Debug) -> DebugList<'a, 'b>

Adds a new entry to the set output.

fn finish(self) -> Result

Consumes the DebugSet, finishing output and returning any error encountered.