Struct debug_builders::DebugMap [] [src]

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

A struct to help with fmt::Debug implementations.

Methods

impl<'a, 'b> DebugMap<'a, 'b>

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

Creates a new DebugMap.

fn entry(self, key: &Debug, value: &Debug) -> DebugMap<'a, 'b>

Adds a new entry to the map output.

fn finish(self) -> Result

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