Macro rcstr

Source
macro_rules! rcstr {
    ($s:expr) => { ... };
}
Expand description

Create an rcstr from a string literal. allocates the RcStr inline when possible otherwise uses a LazyLock to manage the allocation.