@@ -7,7 +7,7 @@ mod field_execution {
7
7
struct DataType ;
8
8
struct DeepDataType ;
9
9
10
- #[ crate :: impl_object_internal ]
10
+ #[ crate :: object_internal ]
11
11
impl DataType {
12
12
fn a ( ) -> & str {
13
13
"Apple"
@@ -37,7 +37,7 @@ mod field_execution {
37
37
}
38
38
}
39
39
40
- #[ crate :: impl_object_internal ]
40
+ #[ crate :: object_internal ]
41
41
impl DeepDataType {
42
42
fn a ( ) -> & str {
43
43
"Already Been Done"
@@ -162,7 +162,7 @@ mod merge_parallel_fragments {
162
162
163
163
struct Type ;
164
164
165
- #[ crate :: impl_object_internal ]
165
+ #[ crate :: object_internal ]
166
166
impl Type {
167
167
fn a ( ) -> & str {
168
168
"Apple"
@@ -246,7 +246,7 @@ mod merge_parallel_inline_fragments {
246
246
struct Type ;
247
247
struct Other ;
248
248
249
- #[ crate :: impl_object_internal ]
249
+ #[ crate :: object_internal ]
250
250
impl Type {
251
251
fn a ( ) -> & str {
252
252
"Apple"
@@ -265,7 +265,7 @@ mod merge_parallel_inline_fragments {
265
265
}
266
266
}
267
267
268
- #[ crate :: impl_object_internal ]
268
+ #[ crate :: object_internal ]
269
269
impl Other {
270
270
fn a ( ) -> & str {
271
271
"Apple"
@@ -396,7 +396,7 @@ mod threads_context_correctly {
396
396
397
397
impl Context for TestContext { }
398
398
399
- #[ crate :: impl_object_internal (
399
+ #[ crate :: object_internal (
400
400
Context = TestContext ,
401
401
) ]
402
402
impl Schema {
@@ -462,7 +462,7 @@ mod dynamic_context_switching {
462
462
463
463
struct ItemRef ;
464
464
465
- #[ crate :: impl_object_internal ( Context = OuterContext ) ]
465
+ #[ crate :: object_internal ( Context = OuterContext ) ]
466
466
impl Schema {
467
467
fn item_opt ( context : & OuterContext , key : i32 ) -> Option < ( & InnerContext , ItemRef ) > {
468
468
executor. context ( ) . items . get ( & key) . map ( |c| ( c, ItemRef ) )
@@ -492,7 +492,7 @@ mod dynamic_context_switching {
492
492
}
493
493
}
494
494
495
- #[ crate :: impl_object_internal ( Context = InnerContext ) ]
495
+ #[ crate :: object_internal ( Context = InnerContext ) ]
496
496
impl ItemRef {
497
497
fn value ( context : & InnerContext ) -> String {
498
498
context. value . clone ( )
@@ -801,7 +801,7 @@ mod propagates_errors_to_nullable_fields {
801
801
}
802
802
}
803
803
804
- #[ crate :: impl_object_internal ]
804
+ #[ crate :: object_internal ]
805
805
impl Schema {
806
806
fn inner ( ) -> Inner {
807
807
Inner
@@ -814,7 +814,7 @@ mod propagates_errors_to_nullable_fields {
814
814
}
815
815
}
816
816
817
- #[ crate :: impl_object_internal ]
817
+ #[ crate :: object_internal ]
818
818
impl Inner {
819
819
fn nullable_field ( ) -> Option < Inner > {
820
820
Some ( Inner )
@@ -1068,7 +1068,7 @@ mod named_operations {
1068
1068
1069
1069
struct Schema ;
1070
1070
1071
- #[ crate :: impl_object_internal ]
1071
+ #[ crate :: object_internal ]
1072
1072
impl Schema {
1073
1073
fn a ( ) -> & str {
1074
1074
"b"
0 commit comments