[−][src]Type Definition multipart::server::ArcStr
type ArcStr = Arc<String>;
Default typedef for shared strings.
Enable the use_arc_str
feature to use Arc<str>
instead, which saves an indirection but
cannot be constructed in Rust versions older than 1.21 (the From<String>
impl was stabilized
in that release).