std::fmt¶
Status: experimental
Formatted printing and string interpolation.
API details and source¶
The implementation source contains the complete declarations and implementation notes. The table below lists canonical Gossamer call signatures; every item name links directly to its implementation file.
| Item | Canonical signature or declaration | Description |
|---|---|---|
Debug |
trait Debug |
Trait for debugging-oriented string conversion. |
Display |
trait Display |
Trait for human-readable string conversion. |
eprint |
builtin eprint(...) |
Prints to stderr without a trailing newline. |
eprintln |
builtin eprintln(...) |
Prints to stderr followed by a newline. |
format |
builtin format(...) |
Formats arguments into an owned String. |
print |
builtin print(...) |
Prints to stdout without a trailing newline. |
println |
builtin println(...) |
Prints to stdout followed by a newline. |