(&self)
| 211 | } |
| 212 | impl<Alloc: IAlloc> Clone for ArcStr<Alloc> { |
| 213 | fn clone(&self) -> Self { |
| 214 | Self { |
| 215 | inner: self.inner.clone(), |
| 216 | } |
| 217 | } |
| 218 | } |
| 219 | impl<Alloc: IAlloc> Eq for ArcStr<Alloc> {} |
| 220 | impl<Alloc: IAlloc> PartialEq for ArcStr<Alloc> { |
nothing calls this directly
no outgoing calls
no test coverage detected