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