pub struct FormatArgsExpn<'tcx> {
    pub format_string: FormatString,
    pub args: Vec<FormatArg<'tcx>>,
    pub newline: bool,
    comma_spans: Vec<Span>,
    explicit_values: Vec<&'tcx Expr<'tcx>>,
}
Expand description

A parsed format_args! expansion.

Fields§

§format_string: FormatString

The format string literal.

§args: Vec<FormatArg<'tcx>>

The format arguments, such as {:?}.

§newline: bool

Has an added newline due to println!()/writeln!()/etc. The last format string part will include this added newline.

§comma_spans: Vec<Span>

Spans of the commas between the format string and explicit values, excluding any trailing comma

format!("..", 1, 2, 3,)
//          ^  ^  ^
§explicit_values: Vec<&'tcx Expr<'tcx>>

Explicit values passed after the format string, ignoring implicit captures. [1, z + 2] for format!("{x} {} {y}", 1, z + 2).

Implementations§

Gets the spans of the commas inbetween the format string and explicit args, not including any trailing comma

format!("{} {}", a, b)
//             ^  ^

Ensures that the format string and values aren’t coming from a proc macro that sets the output span to that of its input

Source callsite span of all inputs

Get the span of a value expanded to the previous comma, e.g. for the value 10

format("{}.{}", 10, 11)
//            ^^^^

Iterator of all format params, both values and those referenced by width/precisions.

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 176 bytes