@@ -140,7 +140,7 @@ macro_rules! gen_any_buffer_unstable_docs {
140140 } ;
141141}
142142
143- #[ allow( clippy:: crate_in_macro_def) ] // by convention each crate's data provider is `crate::data::Provider `
143+ #[ allow( clippy:: crate_in_macro_def) ] // by convention each crate's data provider is `crate::provider::Baked `
144144#[ doc( hidden) ]
145145#[ macro_export]
146146macro_rules! gen_any_buffer_data_constructors {
@@ -166,7 +166,7 @@ macro_rules! gen_any_buffer_data_constructors {
166166 ///
167167 /// [📚 Help choosing a constructor](icu_provider::constructors)
168168 pub fn $baked( ) -> Result <Self , $error_ty> {
169- $( $struct :: ) ? $unstable( & crate :: data :: Provider )
169+ $( $struct :: ) ? $unstable( & crate :: provider :: Baked )
170170 }
171171 #[ doc = $crate:: gen_any_buffer_unstable_docs!( ANY , $( $struct :: ) ? $baked) ]
172172 pub fn $any( provider: & ( impl $crate:: AnyProvider + ?Sized ) ) -> Result <Self , $error_ty> {
@@ -190,7 +190,7 @@ macro_rules! gen_any_buffer_data_constructors {
190190 ///
191191 /// [📚 Help choosing a constructor](icu_provider::constructors)
192192 pub fn $baked( ) -> $result_ty {
193- $( $struct :: ) ? $unstable( & crate :: data :: Provider )
193+ $( $struct :: ) ? $unstable( & crate :: provider :: Baked )
194194 }
195195 #[ doc = $crate:: gen_any_buffer_unstable_docs!( ANY , $( $struct :: ) ? $baked) ]
196196 pub fn $any( provider: & ( impl $crate:: AnyProvider + ?Sized ) ) -> $result_ty {
@@ -228,7 +228,7 @@ macro_rules! gen_any_buffer_data_constructors {
228228 ///
229229 /// [📚 Help choosing a constructor](icu_provider::constructors)
230230 pub fn $baked( $options_arg: $options_ty) -> $result_ty {
231- $( $struct :: ) ? $unstable( & crate :: data :: Provider , $options_arg)
231+ $( $struct :: ) ? $unstable( & crate :: provider :: Baked , $options_arg)
232232 }
233233 #[ doc = $crate:: gen_any_buffer_unstable_docs!( ANY , $( $struct :: ) ? $baked) ]
234234 pub fn $any( provider: & ( impl $crate:: AnyProvider + ?Sized ) , $options_arg: $options_ty) -> $result_ty {
@@ -250,7 +250,7 @@ macro_rules! gen_any_buffer_data_constructors {
250250 ///
251251 /// [📚 Help choosing a constructor](icu_provider::constructors)
252252 pub fn $baked( $options_arg: $options_ty) -> Result <Self , $error_ty> {
253- $( $struct :: ) ? $unstable( & crate :: data :: Provider , $options_arg)
253+ $( $struct :: ) ? $unstable( & crate :: provider :: Baked , $options_arg)
254254 }
255255 #[ doc = $crate:: gen_any_buffer_unstable_docs!( ANY , $( $struct :: ) ? $baked) ]
256256 pub fn $any( provider: & ( impl $crate:: AnyProvider + ?Sized ) , $options_arg: $options_ty) -> Result <Self , $error_ty> {
@@ -287,7 +287,7 @@ macro_rules! gen_any_buffer_data_constructors {
287287 ///
288288 /// [📚 Help choosing a constructor](icu_provider::constructors)
289289 pub fn $baked( locale: & $crate:: DataLocale ) -> Result <Self , $error_ty> {
290- $( $struct :: ) ? $unstable( & crate :: data :: Provider , locale)
290+ $( $struct :: ) ? $unstable( & crate :: provider :: Baked , locale)
291291 }
292292 #[ doc = $crate:: gen_any_buffer_unstable_docs!( ANY , $( $struct :: ) ? $baked) ]
293293 pub fn $any( provider: & ( impl $crate:: AnyProvider + ?Sized ) , locale: & $crate:: DataLocale ) -> Result <Self , $error_ty> {
@@ -326,7 +326,7 @@ macro_rules! gen_any_buffer_data_constructors {
326326 ///
327327 /// [📚 Help choosing a constructor](icu_provider::constructors)
328328 pub fn $baked( locale: & $crate:: DataLocale , $config_arg: $config_ty, $options_arg: $options_ty) -> Result <Self , $error_ty> {
329- $( $struct :: ) ? $unstable( & crate :: data :: Provider , locale, $config_arg, $options_arg)
329+ $( $struct :: ) ? $unstable( & crate :: provider :: Baked , locale, $config_arg, $options_arg)
330330 }
331331 #[ doc = $crate:: gen_any_buffer_unstable_docs!( ANY , $( $struct :: ) ? $baked) ]
332332 pub fn $any( provider: & ( impl $crate:: AnyProvider + ?Sized ) , locale: & $crate:: DataLocale , $config_arg: $config_ty, $options_arg: $options_ty) -> Result <Self , $error_ty> {
@@ -364,7 +364,7 @@ macro_rules! gen_any_buffer_data_constructors {
364364 ///
365365 /// [📚 Help choosing a constructor](icu_provider::constructors)
366366 pub fn $baked( locale: & $crate:: DataLocale , $options_arg: $options_ty) -> Result <Self , $error_ty> {
367- $( $struct :: ) ? $unstable( & crate :: data :: Provider , locale, $options_arg)
367+ $( $struct :: ) ? $unstable( & crate :: provider :: Baked , locale, $options_arg)
368368 }
369369 #[ doc = $crate:: gen_any_buffer_unstable_docs!( ANY , $( $struct :: ) ? $baked) ]
370370 pub fn $any( provider: & ( impl $crate:: AnyProvider + ?Sized ) , locale: & $crate:: DataLocale , $options_arg: $options_ty) -> Result <Self , $error_ty> {
0 commit comments