musli_core/
no_std.rs
1#[cfg(feature = "alloc")]
7pub use rust_alloc::borrow::ToOwned;
8
9#[cfg(not(feature = "alloc"))]
10pub use self::to_owned::ToOwned;
11
12#[cfg(not(feature = "alloc"))]
13mod to_owned {
14 use core::borrow::Borrow;
15
16 pub enum NeverOwned {}
19
20 impl<T> Borrow<[T]> for NeverOwned
21 where
22 T: Clone,
23 {
24 fn borrow(&self) -> &[T] {
25 match *self {}
26 }
27 }
28
29 impl<T> Borrow<T> for NeverOwned
30 where
31 T: Clone,
32 {
33 fn borrow(&self) -> &T {
34 match *self {}
35 }
36 }
37
38 impl Borrow<str> for NeverOwned {
39 fn borrow(&self) -> &str {
40 match *self {}
41 }
42 }
43
44 pub trait ToOwned {
46 type Owned: Borrow<Self>;
48 }
49
50 impl<T> ToOwned for [T]
51 where
52 T: Clone,
53 {
54 type Owned = NeverOwned;
55 }
56
57 impl<T> ToOwned for T
58 where
59 T: Clone,
60 {
61 type Owned = NeverOwned;
62 }
63
64 impl ToOwned for str {
65 type Owned = NeverOwned;
66 }
67}