Structsยง
- Arguments ๐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.
- DebugList ๐A struct to help with
fmt::Debug
implementations. - DebugMap ๐A struct to help with
fmt::Debug
implementations. - DebugPtr ๐
- DebugSet ๐A struct to help with
fmt::Debug
implementations. - DebugStruct ๐A struct to help with
fmt::Debug
implementations. - DebugTuple ๐A struct to help with
fmt::Debug
implementations. - Error ๐The error type which is returned from formatting a message into a stream.
- Formatter ๐Configuration for formatting.
- Implements
fmt::Debug
andfmt::Display
using a function.
Enumsยง
- Alignment ๐Possible alignments returned by
Formatter::align
Traitsยง
- Binary ๐
b
formatting. - Debug ๐
?
formatting. - Display ๐Format trait for an empty format,
{}
. - LowerExp ๐
e
formatting. - LowerHex ๐
x
formatting. - Octal ๐
o
formatting. - Pointer ๐
p
formatting. - UpperExp ๐
E
formatting. - UpperHex ๐
X
formatting. - Write ๐A trait for writing or formatting into Unicode-accepting buffers or streams.
Functionsยง
- ptr ๐
- write ๐Takes an output stream and an
Arguments
struct that can be precompiled with theformat_args!
macro.
Type Aliasesยง
- Result ๐The type returned by formatter methods.
Derive Macrosยง
- Debug ๐Derive macro generating an impl of the trait
Debug
.