1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use proc_macro2::{Ident, TokenStream};
use quote::quote;
pub fn expand_partial_ord_as_ref_str(ident: &Ident) -> syn::Result<TokenStream> {
Ok(quote! {
#[automatically_derived]
#[allow(deprecated)]
impl ::std::cmp::PartialOrd for #ident {
fn partial_cmp(&self, other: &Self) -> ::std::option::Option<::std::cmp::Ordering> {
let other = ::std::convert::AsRef::<::std::primitive::str>::as_ref(other);
::std::convert::AsRef::<::std::primitive::str>::as_ref(self).partial_cmp(other)
}
}
})
}
pub fn expand_ord_as_ref_str(ident: &Ident) -> syn::Result<TokenStream> {
Ok(quote! {
#[automatically_derived]
#[allow(deprecated)]
impl ::std::cmp::Ord for #ident {
fn cmp(&self, other: &Self) -> ::std::cmp::Ordering {
let other = ::std::convert::AsRef::<::std::primitive::str>::as_ref(other);
::std::convert::AsRef::<::std::primitive::str>::as_ref(self).cmp(other)
}
}
})
}