ruma_macros/serde/display_as_ref_str.rs
1use proc_macro2::{Ident, TokenStream};
2use quote::quote;
3
4pub fn expand_display_as_ref_str(ident: &Ident) -> syn::Result<TokenStream> {
5 Ok(quote! {
6 #[automatically_derived]
7 #[allow(deprecated)]
8 impl ::std::fmt::Display for #ident {
9 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
10 f.write_str(::std::convert::AsRef::<::std::primitive::str>::as_ref(self))
11 }
12 }
13 })
14}