1use alloc::vec::Vec;
2
3use crate::String;
4
5impl PartialEq<Vec<u8>> for String {
6 fn eq(&self, other: &Vec<u8>) -> bool {
7 **self == **other
8 }
9}
10
11impl PartialEq<String> for Vec<u8> {
12 fn eq(&self, other: &String) -> bool {
13 **self == **other
14 }
15}
16
17impl<const N: usize> PartialEq<[u8; N]> for String {
18 fn eq(&self, other: &[u8; N]) -> bool {
19 **self == *other
20 }
21}
22
23impl<const N: usize> PartialEq<String> for [u8; N] {
24 fn eq(&self, other: &String) -> bool {
25 *self == **other
26 }
27}
28
29impl<const N: usize> PartialEq<&[u8; N]> for String {
30 fn eq(&self, other: &&[u8; N]) -> bool {
31 **self == **other
32 }
33}
34
35impl<const N: usize> PartialEq<String> for &[u8; N] {
36 fn eq(&self, other: &String) -> bool {
37 **self == **other
38 }
39}
40
41impl PartialEq<[u8]> for String {
42 fn eq(&self, other: &[u8]) -> bool {
43 **self == *other
44 }
45}
46
47impl PartialEq<String> for [u8] {
48 fn eq(&self, other: &String) -> bool {
49 *self == **other
50 }
51}
52
53impl PartialEq<&[u8]> for String {
54 fn eq(&self, other: &&[u8]) -> bool {
55 **self == **other
56 }
57}
58
59impl PartialEq<String> for &[u8] {
60 fn eq(&self, other: &String) -> bool {
61 **self == **other
62 }
63}
64
65impl PartialEq<alloc::string::String> for String {
66 fn eq(&self, other: &alloc::string::String) -> bool {
67 **self == *other.as_bytes()
68 }
69}
70
71impl PartialEq<String> for alloc::string::String {
72 fn eq(&self, other: &String) -> bool {
73 *self.as_bytes() == **other
74 }
75}
76
77impl PartialEq<str> for String {
78 fn eq(&self, other: &str) -> bool {
79 **self == *other.as_bytes()
80 }
81}
82
83impl PartialEq<String> for str {
84 fn eq(&self, other: &String) -> bool {
85 *self.as_bytes() == **other
86 }
87}
88
89impl PartialEq<&str> for String {
90 fn eq(&self, other: &&str) -> bool {
91 **self == *other.as_bytes()
92 }
93}
94
95impl PartialEq<String> for &str {
96 fn eq(&self, other: &String) -> bool {
97 *self.as_bytes() == **other
98 }
99}