Struct debug_builders::DebugSet [] [src]

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

A struct to help with fmt::Debug implementations.

Methods

impl<'a, 'b> DebugSet<'a, 'b>

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

Creates a new DebugSet.

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

Adds a new entry to the set output.

fn finish(self) -> Result

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