Lines Matching defs:std
49 impl From<std::string::String> for Id {
50 fn from(name: std::string::String) -> Self {
56 impl From<&'_ std::string::String> for Id {
57 fn from(name: &'_ std::string::String) -> Self {
86 impl std::fmt::Display for Id {
88 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
89 std::fmt::Display::fmt(self.as_str(), f)
93 impl std::fmt::Debug for Id {
95 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
96 std::fmt::Debug::fmt(self.as_str(), f)
107 impl std::borrow::Borrow<str> for Id {
153 impl PartialEq<std::string::String> for Id {
155 fn eq(&self, other: &std::string::String) -> bool {
159 impl PartialEq<Id> for std::string::String {