22 stable releases

2.0.3 Nov 29, 2023
2.0.0 Aug 11, 2022
1.10.0 Dec 5, 2021
1.9.0 Aug 21, 2021
1.2.1 Feb 16, 2019

#107 in Rust patterns

Download history 20198/week @ 2023-11-20 16474/week @ 2023-11-27 17813/week @ 2023-12-04 16022/week @ 2023-12-11 9716/week @ 2023-12-18 2764/week @ 2023-12-25 13585/week @ 2024-01-01 16189/week @ 2024-01-08 17770/week @ 2024-01-15 18082/week @ 2024-01-22 22938/week @ 2024-01-29 13518/week @ 2024-02-05 24791/week @ 2024-02-12 21047/week @ 2024-02-19 29546/week @ 2024-02-26 27516/week @ 2024-03-04

103,078 downloads per month
Used in 31 crates (12 directly)

MPL-2.0 license

20KB
150 lines

Travis (.com) Crates.io docs.rs license

lazy_format

A [no_std] library for lazily formatting things. Because allocating temporary strings just to write them to a buffered stream is bad for your health.

use std::io;

use lazy_format::lazy_format;
use joinery::JoinableIterator;

fn main() {
	let result = (0..10)
		.map(|value| lazy_format!("\t'{}'", value))
		.join_with("\n")
		.to_string();

	assert_eq!(result,
"	'0'
	'1'
	'2'
	'3'
	'4'
	'5'
	'6'
	'7'
	'8'
	'9'")
}

The above example is the key motivating example: when building up some kind of object you wish to write or format, there's no reason to allocate intermediary strings (which is what format! does). Instead, lazy_format! captures its arguments and returns an opaque struct with a Display implementation, so that the actual formatting can happen directly into its final destination buffer (such as a file or string).

No runtime deps