Module std::fmt

Overview

Formatting text.

This includes types, macros, and functions used to format text.

Examples

let who = "World";
let string = format!("Hello {}", who);
assert_eq!(string, "Hello World");

Types

Error

Structs

Format

A format specification, wrapping an inner value.

Formatter

A formatter for the rune virtual machine.

Macros

format!

Format a string using a format specifier.