@@ -50,6 +50,7 @@ mod points_to_matcher;
50
50
mod pointwise_matcher;
51
51
mod predicate_matcher;
52
52
mod property_matcher;
53
+ mod result_of_matcher;
53
54
mod some_matcher;
54
55
mod str_matcher;
55
56
mod subset_of_matcher;
@@ -95,8 +96,8 @@ pub use superset_of_matcher::superset_of;
95
96
pub use crate :: {
96
97
__all as all, __any as any, __contains_each as contains_each, __elements_are as elements_are,
97
98
__field as field, __is_contained_in as is_contained_in, __matches_pattern as matches_pattern,
98
- __pat as pat, __pointwise as pointwise, __property as property,
99
- __unordered_elements_are as unordered_elements_are,
99
+ __pat as pat, __pointwise as pointwise, __property as property, __result_of as result_of ,
100
+ __result_of_ref as result_of_ref , __unordered_elements_are as unordered_elements_are,
100
101
} ;
101
102
102
103
// Types and functions used by macros matchers.
@@ -113,6 +114,7 @@ pub mod __internal_unstable_do_not_depend_on_these {
113
114
pub use super :: matches_pattern:: internal:: pattern_only;
114
115
pub use super :: pointwise_matcher:: internal:: PointwiseMatcher ;
115
116
pub use super :: property_matcher:: internal:: { property_matcher, property_ref_matcher} ;
117
+ pub use super :: result_of_matcher:: internal:: { result_of, result_of_ref} ;
116
118
pub use super :: unordered_elements_are_matcher:: internal:: {
117
119
Requirements , UnorderedElementsAreMatcher ,
118
120
} ;
0 commit comments