• Home
  • Raw
  • Download

Lines Matching refs:Str

6 pub struct Str {  struct
10 impl Str { argument
41 impl From<&'_ Str> for Str { implementation
42 fn from(id: &'_ Str) -> Self { in from()
48 impl From<std::string::String> for Str { implementation
55 impl From<&'_ std::string::String> for Str { implementation
61 impl From<&'static str> for Str { implementation
67 impl From<&'_ &'static str> for Str { implementation
73 impl From<Str> for String {
74 fn from(name: Str) -> Self { in from()
79 impl From<Str> for Vec<u8> {
80 fn from(name: Str) -> Self { in from()
85 impl From<Str> for std::ffi::OsString {
86 fn from(name: Str) -> Self { in from()
91 impl From<Str> for std::path::PathBuf {
92 fn from(name: Str) -> Self { in from()
97 impl std::fmt::Display for Str { implementation
104 impl std::fmt::Debug for Str { implementation
111 impl std::ops::Deref for Str { implementation
120 impl AsRef<str> for Str { implementation
127 impl AsRef<[u8]> for Str { implementation
134 impl AsRef<std::ffi::OsStr> for Str { implementation
141 impl AsRef<std::path::Path> for Str { implementation
148 impl std::borrow::Borrow<str> for Str { implementation
155 impl PartialEq<str> for Str { implementation
161 impl PartialEq<Str> for str {
163 fn eq(&self, other: &Str) -> bool { in eq()
168 impl PartialEq<&'_ str> for Str { implementation
174 impl PartialEq<Str> for &'_ str {
176 fn eq(&self, other: &Str) -> bool { in eq()
181 impl PartialEq<std::ffi::OsStr> for Str { implementation
187 impl PartialEq<Str> for std::ffi::OsStr {
189 fn eq(&self, other: &Str) -> bool { in eq()
194 impl PartialEq<&'_ std::ffi::OsStr> for Str { implementation
200 impl PartialEq<Str> for &'_ std::ffi::OsStr {
202 fn eq(&self, other: &Str) -> bool { in eq()
207 impl PartialEq<std::string::String> for Str { implementation
213 impl PartialEq<Str> for std::string::String {
215 fn eq(&self, other: &Str) -> bool { in eq()