Expand description
Macros§
- format_
args_ owned - Like
format_args
, but takes ownership of its arguments.
Structs§
- FmtDebug
Debug
orDisplay
a value based on itsDebug
implementation.- FmtDebug
List Debug
orDisplay
a list ofDebug
objects as a list.- FmtDebug
Map Debug
orDisplay
a list of(Debug, Debug)
objects as a map.- FmtDebug
Set Debug
orDisplay
a list ofDebug
objects as a set.- FmtDisplay
Debug
orDisplay
a value based on itsDisplay
implementation.- FmtDisplay
List Debug
orDisplay
a list ofDisplay
objects as a list.- FmtDisplay
Map Debug
orDisplay
a list of(Display, Display)
objects as a map.- FmtDisplay
Set Debug
orDisplay
a list ofDisplay
objects as a set.- FmtFn
- Implements
Debug
andDisplay
based on a function object. - FmtSeparated
Debug List Debug
orDisplay
a list ofDebug
objects with a separator that implementsDebug
.- FmtSeparated
Display List Debug
orDisplay
a list ofDisplay
objects with a separator that implementsDisplay
.
Functions§
- fmt_
debug - Creates an object that
Debug
orDisplay
a value based on itsDebug
implementation. - fmt_
debug_ list - Creates an object that
Debug
orDisplay
a list ofDebug
objects as a list. - fmt_
debug_ map - Creates an object that
Debug
orDisplay
a list of(Debug, Debug)
objects as a map. - fmt_
debug_ set - Creates an object that
Debug
orDisplay
a list ofDebug
objects as a set. - fmt_
display - Creates an object that
Debug
orDisplay
a value based on itsDisplay
implementation. - fmt_
display_ list - Creates an object that
Debug
orDisplay
a list ofDisplay
objects as a list. - fmt_
display_ map - Creates an object that
Debug
orDisplay
a list of(Display, Display)
objects as a map. - fmt_
display_ set - Creates an object that
Debug
orDisplay
a list ofDisplay
objects as a set. - fmt_fn
- Creates an object that implements
Debug
andDisplay
based on the provided function object. - fmt_
separated_ debug_ list - Creates an object that
Debug
orDisplay
a list ofDebug
objects with specified separator that implementsDebug
. - fmt_
separated_ display_ list - Creates an object that
Debug
orDisplay
a list ofDisplay
objects with specified separator that implementsDisplay
.