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#[allow(unused)] 9#[doc(inline)] 10pub use std::string::String;