Expand description
Utilities for formatting and printing strings.
Structs§
- Arguments
Non- ferrocene_certified
- 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 no constructors are given and the fields are private to prevent modification.
- Debug
List Non- ferrocene_certified
- A struct to help with
fmt::Debug
implementations. - Debug
Map Non- ferrocene_certified
- A struct to help with
fmt::Debug
implementations. - Debug
Set Non- ferrocene_certified
- A struct to help with
fmt::Debug
implementations. - Debug
Struct Non- ferrocene_certified
- A struct to help with
fmt::Debug
implementations. - Debug
Tuple Non- ferrocene_certified
- A struct to help with
fmt::Debug
implementations. - Error
Non- ferrocene_certified
- The error type which is returned from formatting a message into a stream.
- Formatter
Non- ferrocene_certified
- Configuration for formatting.
- Formatting
Options Experimental Non- ferrocene_certified
- Options for formatting.
- FromFn
Experimental Non- ferrocene_certified
- Implements
fmt::Debug
andfmt::Display
using a function. - NumBuffer
Experimental Non- ferrocene_certified
- A buffer wrapper of which the internal size is based on the maximum number of digits the associated integer can have.
Enums§
- Alignment
Non- ferrocene_certified
- Possible alignments returned by
Formatter::align
- Debug
AsHex Experimental Non- ferrocene_certified
- Specifies whether the
Debug
trait should use lower-/upper-case hexadecimal or normal integers. - Sign
Experimental Non- ferrocene_certified
- The signedness of a
Formatter
(or of aFormattingOptions
).
Traits§
- Binary
Non- ferrocene_certified
b
formatting.- Debug
Non- ferrocene_certified
?
formatting.- Display
Non- ferrocene_certified
- Format trait for an empty format,
{}
. - Lower
Exp Non- ferrocene_certified
e
formatting.- Lower
Hex Non- ferrocene_certified
x
formatting.- Octal
Non- ferrocene_certified
o
formatting.- Pointer
Non- ferrocene_certified
p
formatting.- Upper
Exp Non- ferrocene_certified
E
formatting.- Upper
Hex Non- ferrocene_certified
X
formatting.- Write
Non- ferrocene_certified
- A trait for writing or formatting into Unicode-accepting buffers or streams.
- NumBuffer
Trait Experimental Non- ferrocene_certified
- Trait used to describe the maximum number of digits in decimal base of the implemented integer.
Functions§
- write
Non- ferrocene_certified
- Takes an output stream and an
Arguments
struct that can be precompiled with theformat_args!
macro. - from_fn
Experimental Non- ferrocene_certified
- Creates a type whose
fmt::Debug
andfmt::Display
impls are provided with the functionf
.
Type Aliases§
- Result
Non- ferrocene_certified
- The type returned by formatter methods.
Derive Macros§
- Debug
Non- ferrocene_certified
- Derive macro generating an impl of the trait
Debug
.