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

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

A struct to help with fmt::Debug implementations.

Constructed by the Formatter::debug_list method.

Methods

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

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

Adds a new entry to the set output.

fn finish(self) -> Result

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