Searched defs:Cow (Results 1 – 1 of 1) sorted by relevance
/linux-6.1.9/rust/alloc/ |
D | borrow.rs | 23 impl<'a, B: ?Sized> Borrow<B> for Cow<'a, B> implementation 183 pub enum Cow<'a, B: ?Sized + 'a> enum 197 impl<B: ?Sized + ToOwned> Clone for Cow<'_, B> { implementation 216 impl<B: ?Sized + ToOwned> Cow<'_, B> { implementation 336 impl<B: ?Sized + ToOwned> const Deref for Cow<'_, B> implementation 351 impl<B: ?Sized> Eq for Cow<'_, B> where B: Eq + ToOwned {} implementation 354 impl<B: ?Sized> Ord for Cow<'_, B> implementation 365 impl<'a, 'b, B: ?Sized, C: ?Sized> PartialEq<Cow<'b, C>> for Cow<'a, B> implementation 377 impl<'a, B: ?Sized> PartialOrd for Cow<'a, B> implementation 388 impl<B: ?Sized> fmt::Debug for Cow<'_, B> implementation [all …]
|