Struct core::fmt::DebugSetUnstable [-] [+] [src]

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

A struct to help with fmt::Debug implementations.

Constructed by the Formatter::debug_set method.

Methods

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

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.