2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-01 18:25:32 +00:00
async-std/src/string/mod.rs

9 lines
172 B
Rust

//! The Rust core string library
//!
//! This library provides a UTF-8 encoded, growable string.
mod extend;
mod from_stream;
#[doc(inline)]
pub use std::string::String;