Lines Matching defs:deprecations
41 deprecations: Vec<Deprecation>,
265 deprecations: vec![],
283 self.deprecations.push(Deprecation {
300 self.deprecations.push(Deprecation {
411 self.deprecations.push(Deprecation::attribute(
459 self.deprecations.push(Deprecation {
471 self.deprecations.push(Deprecation {
971 pub fn deprecations(&self) -> proc_macro2::TokenStream {
972 let deprecations = &self.deprecations;
973 quote!( #(#deprecations)* )