Struct core::fmt::DebugList [] [src]

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

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

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

Methods

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

fn entry(self, entry: &Debug) -> DebugList<'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.