summary refs log tree commit diff
path: root/src/libstd/send_str.rs
AgeCommit message (Collapse)AuthorLines
2013-09-16Corrected a few small style issuesMarvin Löbel-18/+43
Split up test function a bit
2013-09-16Add an SendStr typeMarvin Löbel-0/+223
A SendStr is a string that can hold either a ~str or a &'static str. This can be useful as an optimization when an allocation is sometimes needed but the common case is statically known. Possible use cases include Maps with both static and owned keys, or propagating error messages across task boundaries. SendStr implements most basic traits in a way that hides the fact that it is an enum; in particular things like order and equality are only determined by the content of the wrapped strings. Replaced std::rt:logging::SendableString with SendStr Added tests for using an SendStr as key in Hash- and Treemaps