Crates.io | lazy_format |
lib.rs | lazy_format |
version | 2.0.3 |
source | src |
created_at | 2019-02-16 10:06:28.588157 |
updated_at | 2023-11-29 21:40:56.75383 |
description | A utility crate for lazily formatting values for later |
homepage | |
repository | https://github.com/Lucretiel/lazy_format |
max_upload_size | |
id | 115120 |
size | 46,793 |
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).