(other: KStringRef<'s>)
| 226 | impl<'s, B: crate::backend::HeapStr> From<KStringRef<'s>> for KStringBase<B> { |
| 227 | #[inline] |
| 228 | fn from(other: KStringRef<'s>) -> Self { |
| 229 | other.to_owned() |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | impl<'s, B: crate::backend::HeapStr> From<&'s KStringRef<'s>> for KStringBase<B> { |
nothing calls this directly
no test coverage detected