1#![stable(feature = "rust1", since = "1.0.0")]
4
5#[stable(feature = "rust1", since = "1.0.0")]
6pub use core::borrow::{Borrow, BorrowMut};
7use core::cmp::Ordering;
8use core::hash::{Hash, Hasher};
9#[cfg(not(no_global_oom_handling))]
10use core::ops::{Add, AddAssign};
11use core::ops::{Deref, DerefPure};
12
13use Cow::*;
14
15use crate::fmt;
16#[cfg(not(no_global_oom_handling))]
17use crate::string::String;
18
19#[stable(feature = "rust1", since = "1.0.0")]
20#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
21impl<'a, B: ?Sized> const Borrow<B> for Cow<'a, B>
22where
23 B: ToOwned,
24 B::Owned: [const] Borrow<B>,
25{
26 fn borrow(&self) -> &B {
27 &**self
28 }
29}
30
31#[rustc_diagnostic_item = "ToOwned"]
38#[stable(feature = "rust1", since = "1.0.0")]
39pub trait ToOwned {
40 #[stable(feature = "rust1", since = "1.0.0")]
42 type Owned: Borrow<Self>;
43
44 #[stable(feature = "rust1", since = "1.0.0")]
58 #[must_use = "cloning is often expensive and is not expected to have side effects"]
59 #[rustc_diagnostic_item = "to_owned_method"]
60 fn to_owned(&self) -> Self::Owned;
61
62 #[stable(feature = "toowned_clone_into", since = "1.63.0")]
78 fn clone_into(&self, target: &mut Self::Owned) {
79 *target = self.to_owned();
80 }
81}
82
83#[stable(feature = "rust1", since = "1.0.0")]
84impl<T> ToOwned for T
85where
86 T: Clone,
87{
88 type Owned = T;
89 fn to_owned(&self) -> T {
90 self.clone()
91 }
92
93 fn clone_into(&self, target: &mut T) {
94 target.clone_from(self);
95 }
96}
97
98#[stable(feature = "rust1", since = "1.0.0")]
180#[rustc_diagnostic_item = "Cow"]
181pub enum Cow<'a, B: ?Sized + 'a>
182where
183 B: ToOwned,
184{
185 #[stable(feature = "rust1", since = "1.0.0")]
187 Borrowed(#[stable(feature = "rust1", since = "1.0.0")] &'a B),
188
189 #[stable(feature = "rust1", since = "1.0.0")]
191 Owned(#[stable(feature = "rust1", since = "1.0.0")] <B as ToOwned>::Owned),
192}
193
194#[stable(feature = "rust1", since = "1.0.0")]
195impl<B: ?Sized + ToOwned> Clone for Cow<'_, B> {
196 fn clone(&self) -> Self {
197 match *self {
198 Borrowed(b) => Borrowed(b),
199 Owned(ref o) => {
200 let b: &B = o.borrow();
201 Owned(b.to_owned())
202 }
203 }
204 }
205
206 fn clone_from(&mut self, source: &Self) {
207 match (self, source) {
208 (&mut Owned(ref mut dest), &Owned(ref o)) => o.borrow().clone_into(dest),
209 (t, s) => *t = s.clone(),
210 }
211 }
212}
213
214impl<B: ?Sized + ToOwned> Cow<'_, B> {
215 #[unstable(feature = "cow_is_borrowed", issue = "65143")]
230 pub const fn is_borrowed(&self) -> bool {
231 match *self {
232 Borrowed(_) => true,
233 Owned(_) => false,
234 }
235 }
236
237 #[unstable(feature = "cow_is_borrowed", issue = "65143")]
252 pub const fn is_owned(&self) -> bool {
253 !self.is_borrowed()
254 }
255
256 #[stable(feature = "rust1", since = "1.0.0")]
274 pub fn to_mut(&mut self) -> &mut <B as ToOwned>::Owned {
275 match *self {
276 Borrowed(borrowed) => {
277 *self = Owned(borrowed.to_owned());
278 match *self {
279 Borrowed(..) => unreachable!(),
280 Owned(ref mut owned) => owned,
281 }
282 }
283 Owned(ref mut owned) => owned,
284 }
285 }
286
287 #[stable(feature = "rust1", since = "1.0.0")]
322 pub fn into_owned(self) -> <B as ToOwned>::Owned {
323 match self {
324 Borrowed(borrowed) => borrowed.to_owned(),
325 Owned(owned) => owned,
326 }
327 }
328}
329
330#[stable(feature = "rust1", since = "1.0.0")]
331#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
332impl<B: ?Sized + ToOwned> const Deref for Cow<'_, B>
333where
334 B::Owned: [const] Borrow<B>,
335{
336 type Target = B;
337
338 fn deref(&self) -> &B {
339 match *self {
340 Borrowed(borrowed) => borrowed,
341 Owned(ref owned) => owned.borrow(),
342 }
343 }
344}
345
346#[unstable(feature = "deref_pure_trait", issue = "87121")]
351unsafe impl<T: Clone> DerefPure for Cow<'_, T> {}
352#[cfg(not(no_global_oom_handling))]
353#[unstable(feature = "deref_pure_trait", issue = "87121")]
354unsafe impl DerefPure for Cow<'_, str> {}
355#[cfg(not(no_global_oom_handling))]
356#[unstable(feature = "deref_pure_trait", issue = "87121")]
357unsafe impl<T: Clone> DerefPure for Cow<'_, [T]> {}
358
359#[stable(feature = "rust1", since = "1.0.0")]
360impl<B: ?Sized> Eq for Cow<'_, B> where B: Eq + ToOwned {}
361
362#[stable(feature = "rust1", since = "1.0.0")]
363impl<B: ?Sized> Ord for Cow<'_, B>
364where
365 B: Ord + ToOwned,
366{
367 #[inline]
368 fn cmp(&self, other: &Self) -> Ordering {
369 Ord::cmp(&**self, &**other)
370 }
371}
372
373#[stable(feature = "rust1", since = "1.0.0")]
374impl<'a, 'b, B: ?Sized, C: ?Sized> PartialEq<Cow<'b, C>> for Cow<'a, B>
375where
376 B: PartialEq<C> + ToOwned,
377 C: ToOwned,
378{
379 #[inline]
380 fn eq(&self, other: &Cow<'b, C>) -> bool {
381 PartialEq::eq(&**self, &**other)
382 }
383}
384
385#[stable(feature = "rust1", since = "1.0.0")]
386impl<'a, B: ?Sized> PartialOrd for Cow<'a, B>
387where
388 B: PartialOrd + ToOwned,
389{
390 #[inline]
391 fn partial_cmp(&self, other: &Cow<'a, B>) -> Option<Ordering> {
392 PartialOrd::partial_cmp(&**self, &**other)
393 }
394}
395
396#[stable(feature = "rust1", since = "1.0.0")]
397impl<B: ?Sized> fmt::Debug for Cow<'_, B>
398where
399 B: fmt::Debug + ToOwned<Owned: fmt::Debug>,
400{
401 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
402 match *self {
403 Borrowed(ref b) => fmt::Debug::fmt(b, f),
404 Owned(ref o) => fmt::Debug::fmt(o, f),
405 }
406 }
407}
408
409#[stable(feature = "rust1", since = "1.0.0")]
410impl<B: ?Sized> fmt::Display for Cow<'_, B>
411where
412 B: fmt::Display + ToOwned<Owned: fmt::Display>,
413{
414 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
415 match *self {
416 Borrowed(ref b) => fmt::Display::fmt(b, f),
417 Owned(ref o) => fmt::Display::fmt(o, f),
418 }
419 }
420}
421
422#[stable(feature = "default", since = "1.11.0")]
423impl<B: ?Sized> Default for Cow<'_, B>
424where
425 B: ToOwned<Owned: Default>,
426{
427 fn default() -> Self {
429 Owned(<B as ToOwned>::Owned::default())
430 }
431}
432
433#[stable(feature = "rust1", since = "1.0.0")]
434impl<B: ?Sized> Hash for Cow<'_, B>
435where
436 B: Hash + ToOwned,
437{
438 #[inline]
439 fn hash<H: Hasher>(&self, state: &mut H) {
440 Hash::hash(&**self, state)
441 }
442}
443
444#[stable(feature = "rust1", since = "1.0.0")]
445#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
446impl<T: ?Sized + ToOwned> const AsRef<T> for Cow<'_, T>
447where
448 T::Owned: [const] Borrow<T>,
449{
450 fn as_ref(&self) -> &T {
451 self
452 }
453}
454
455#[cfg(not(no_global_oom_handling))]
456#[stable(feature = "cow_add", since = "1.14.0")]
457impl<'a> Add<&'a str> for Cow<'a, str> {
458 type Output = Cow<'a, str>;
459
460 #[inline]
461 fn add(mut self, rhs: &'a str) -> Self::Output {
462 self += rhs;
463 self
464 }
465}
466
467#[cfg(not(no_global_oom_handling))]
468#[stable(feature = "cow_add", since = "1.14.0")]
469impl<'a> Add<Cow<'a, str>> for Cow<'a, str> {
470 type Output = Cow<'a, str>;
471
472 #[inline]
473 fn add(mut self, rhs: Cow<'a, str>) -> Self::Output {
474 self += rhs;
475 self
476 }
477}
478
479#[cfg(not(no_global_oom_handling))]
480#[stable(feature = "cow_add", since = "1.14.0")]
481impl<'a> AddAssign<&'a str> for Cow<'a, str> {
482 fn add_assign(&mut self, rhs: &'a str) {
483 if self.is_empty() {
484 *self = Cow::Borrowed(rhs)
485 } else if !rhs.is_empty() {
486 if let Cow::Borrowed(lhs) = *self {
487 let mut s = String::with_capacity(lhs.len() + rhs.len());
488 s.push_str(lhs);
489 *self = Cow::Owned(s);
490 }
491 self.to_mut().push_str(rhs);
492 }
493 }
494}
495
496#[cfg(not(no_global_oom_handling))]
497#[stable(feature = "cow_add", since = "1.14.0")]
498impl<'a> AddAssign<Cow<'a, str>> for Cow<'a, str> {
499 fn add_assign(&mut self, rhs: Cow<'a, str>) {
500 if self.is_empty() {
501 *self = rhs
502 } else if !rhs.is_empty() {
503 if let Cow::Borrowed(lhs) = *self {
504 let mut s = String::with_capacity(lhs.len() + rhs.len());
505 s.push_str(lhs);
506 *self = Cow::Owned(s);
507 }
508 self.to_mut().push_str(&rhs);
509 }
510 }
511}