Struct core::fmt::DebugSet1.2.0 [] [src]

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

A struct to help with fmt::Debug implementations.

Constructed by the Formatter::debug_set method.

Methods

impl<'a, 'b: 'a> DebugSet<'a, 'b>
[src]

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

Adds a new entry to the set output.

fn entries<D, I>(&mut self, entries: I) -> &mut DebugSet<'a, 'b> where D: Debug, I: IntoIterator<Item=D>[]

Adds the contents of an iterator of entries to the set output.

fn finish(&mut self) -> Result[]

Finishes output and returns any error encountered.