logo
1
2
3
4
5
6
7
8
9
//! 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;