| 23 | #[derive(Copy, Clone, Collect)] |
| 24 | #[collect(no_drop)] |
| 25 | pub struct InternedString<'gc>(Gc<'gc, StringInner>); |
| 26 | |
| 27 | // We represent `String` as either a pointer to an external / owned slice pointer or a size prefixed |
| 28 | // inline array. |
no outgoing calls
no test coverage detected