Struct core::fmt::DebugSet [] [src]

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

A struct to help with fmt::Debug`fmt::Debug` implementations.

Constructed by the Formatter::debug_set`Formatter::debug_set` method.

Methods

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

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

Unstable

: method was just created

Adds a new entry to the set output.

fn finish(self) -> Result

Unstable

: method was just created

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