Registry / utility / string-builder

string-builder

JSON →
library0.2.0rscratesunverified

A simple string builder type for efficient string construction.

# Cargo.toml [dependencies] string-builder = "0.2.0"
INSTALL
IMPORT
SIG · STRING-BUILDER
S
string-builder
utilityrustv0.2.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Builder
use string_builder::Builder;

Creates a string builder, appends strings, and builds the final string.

use string_builder::Builder; let mut sb = Builder::default(); sb.append("Hello, "); sb.append("world!"); let result = sb.string().unwrap(); println!("{}", result);
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.2.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
string-builder — cargo add string-builder · libregistry