1use quote::ToTokens; 2 3use crate::model::Client; 4 5impl ToTokens for Client { 6 fn to_tokens(&self, tokens: &mut proc_macro2::TokenStream) {} 7}