Struct core::fmt::DebugTuple
[−]
[src]
#[must_use] pub struct DebugTuple<'a, 'b> { // some fields omitted }
Unstable
A struct to help with fmt::Debug
`fmt::Debug` implementations.
Constructed by the Formatter::debug_tuple
`Formatter::debug_tuple` method.
Methods
impl<'a, 'b> DebugTuple<'a, 'b>
fn field(self, value: &Debug) -> DebugTuple<'a, 'b>
Unstable
: method was just created
Adds a new field to the generated tuple struct output.
fn finish(self) -> Result
Unstable
: method was just created
Consumes the DebugTuple
`DebugTuple`, finishing output and returning any error
encountered.