Struct clippy_utils::macros::FormatParam
source · pub struct FormatParam<'tcx> {
pub value: &'tcx Expr<'tcx>,
pub kind: FormatParamKind,
pub usage: FormatParamUsage,
pub span: Span,
}
Expand description
A FormatParam
is any place in a FormatArgument
that refers to a supplied value, e.g.
let precision = 2;
format!("{:.precision$}", 0.1234);
has two FormatParam
s, a FormatParamKind::Implicit
.kind
with a .value
of 0.1234
and a [FormatParamKind::NamedInline("precision")
] .kind
with a .value
of 2
Fields§
§value: &'tcx Expr<'tcx>
The expression this parameter refers to.
kind: FormatParamKind
How this parameter refers to its value
.
usage: FormatParamUsage
Where this format param is being used - argument/width/precision
span: Span
Span of the parameter, may be zero width. Includes the whitespace of implicit parameters.
format!("{}, { }, {0}, {name}", ...);
^ ~~ ~ ~~~~
Implementations§
source§impl<'tcx> FormatParam<'tcx>
impl<'tcx> FormatParam<'tcx>
fn new(
kind: FormatParamKind,
usage: FormatParamUsage,
position: usize,
inner: InnerSpan,
values: &FormatArgsValues<'tcx>
) -> Option<Self>
Trait Implementations§
source§impl<'tcx> Clone for FormatParam<'tcx>
impl<'tcx> Clone for FormatParam<'tcx>
source§fn clone(&self) -> FormatParam<'tcx>
fn clone(&self) -> FormatParam<'tcx>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'tcx> Debug for FormatParam<'tcx>
impl<'tcx> Debug for FormatParam<'tcx>
impl<'tcx> Copy for FormatParam<'tcx>
Auto Trait Implementations§
impl<'tcx> RefUnwindSafe for FormatParam<'tcx>
impl<'tcx> !Send for FormatParam<'tcx>
impl<'tcx> !Sync for FormatParam<'tcx>
impl<'tcx> Unpin for FormatParam<'tcx>
impl<'tcx> UnwindSafe for FormatParam<'tcx>
Blanket Implementations§
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: 32 bytes