Struct collections::fmt::Arguments1.0.0 [] [src]

pub struct Arguments<'a> {
    // some fields omitted
}
[]

This structure represents a safely precompiled version of a format string and its arguments. This cannot be generated at runtime because it cannot safely be done so, so no constructors are given and the fields are private to prevent modification.

The format_args! macro will safely create an instance of this structure and pass it to a function or closure, passed as the first argument. The macro validates the format string at compile-time so usage of the write and format functions can be safely performed.

Trait Implementations

impl<'a> Debug for Arguments<'a>

fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>[]

Formats the value using the given formatter.

impl<'a> Display for Arguments<'a>

fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>[]

Formats the value using the given formatter.

Derived Implementations

impl<'a> Clone for Arguments<'a>

fn clone(&self) -> Arguments<'a>[]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)[]

Performs copy-assignment from source. Read more

impl<'a> Copy for Arguments<'a>