• M
    Add an SendStr type · 76c3e8a3
    Marvin Löbel 提交于
    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
    76c3e8a3
std.rs 5.4 KB