spinoso_string/enc/ascii/
eq.rs

1use alloc::string::String;
2use alloc::vec::Vec;
3
4use super::AsciiString;
5
6impl PartialEq<Vec<u8>> for AsciiString {
7    fn eq(&self, other: &Vec<u8>) -> bool {
8        **self == **other
9    }
10}
11
12impl PartialEq<AsciiString> for Vec<u8> {
13    fn eq(&self, other: &AsciiString) -> bool {
14        **self == **other
15    }
16}
17
18impl PartialEq<[u8]> for AsciiString {
19    fn eq(&self, other: &[u8]) -> bool {
20        **self == *other
21    }
22}
23
24impl PartialEq<AsciiString> for [u8] {
25    fn eq(&self, other: &AsciiString) -> bool {
26        *self == **other
27    }
28}
29
30impl PartialEq<&[u8]> for AsciiString {
31    fn eq(&self, other: &&[u8]) -> bool {
32        **self == **other
33    }
34}
35
36impl PartialEq<AsciiString> for &[u8] {
37    fn eq(&self, other: &AsciiString) -> bool {
38        **self == **other
39    }
40}
41
42impl PartialEq<String> for AsciiString {
43    fn eq(&self, other: &String) -> bool {
44        **self == *other.as_bytes()
45    }
46}
47
48impl PartialEq<AsciiString> for String {
49    fn eq(&self, other: &AsciiString) -> bool {
50        *self.as_bytes() == **other
51    }
52}
53
54impl PartialEq<str> for AsciiString {
55    fn eq(&self, other: &str) -> bool {
56        **self == *other.as_bytes()
57    }
58}
59
60impl PartialEq<AsciiString> for str {
61    fn eq(&self, other: &AsciiString) -> bool {
62        *self.as_bytes() == **other
63    }
64}
65
66impl PartialEq<&str> for AsciiString {
67    fn eq(&self, other: &&str) -> bool {
68        **self == *other.as_bytes()
69    }
70}
71
72impl PartialEq<AsciiString> for &str {
73    fn eq(&self, other: &AsciiString) -> bool {
74        *self.as_bytes() == **other
75    }
76}