@@ -104,9 +104,9 @@ fn wire_DataFrame_get_column_names_impl(
104
104
let api_that = that. cst_decode ( ) ;
105
105
transform_result_dco ( ( move || {
106
106
let api_that = api_that. rust_auto_opaque_decode_ref ( ) ?;
107
- Result :: < _ , anyhow :: Error > :: Ok ( crate :: api :: polars :: DataFrame :: get_column_names (
108
- & api_that,
109
- ) )
107
+ Result :: < _ , flutter_rust_bridge :: for_generated :: anyhow :: Error > :: Ok (
108
+ crate :: api :: polars :: DataFrame :: get_column_names ( & api_that) ,
109
+ )
110
110
} ) ( ) )
111
111
} ,
112
112
)
@@ -124,7 +124,7 @@ fn wire_DataFrame_lazy_impl(
124
124
let api_that = that. cst_decode ( ) ;
125
125
transform_result_dco ( ( move || {
126
126
let api_that = api_that. rust_auto_opaque_decode_owned ( ) ?;
127
- Result :: < _ , anyhow:: Error > :: Ok (
127
+ Result :: < _ , flutter_rust_bridge :: for_generated :: anyhow:: Error > :: Ok (
128
128
flutter_rust_bridge:: for_generated:: rust_auto_opaque_encode (
129
129
crate :: api:: polars:: DataFrame :: lazy ( api_that) ,
130
130
) ,
@@ -149,7 +149,7 @@ fn wire_Expr_gt_impl(
149
149
transform_result_dco ( ( move || {
150
150
let api_that = api_that. rust_auto_opaque_decode_owned ( ) ?;
151
151
let api_other = api_other. rust_auto_opaque_decode_owned ( ) ?;
152
- Result :: < _ , anyhow:: Error > :: Ok (
152
+ Result :: < _ , flutter_rust_bridge :: for_generated :: anyhow:: Error > :: Ok (
153
153
flutter_rust_bridge:: for_generated:: rust_auto_opaque_encode (
154
154
crate :: api:: polars:: Expr :: gt ( api_that, api_other) ,
155
155
) ,
@@ -171,7 +171,7 @@ fn wire_Expr_sum_impl(
171
171
let api_that = that. cst_decode ( ) ;
172
172
transform_result_dco ( ( move || {
173
173
let api_that = api_that. rust_auto_opaque_decode_owned ( ) ?;
174
- Result :: < _ , anyhow:: Error > :: Ok (
174
+ Result :: < _ , flutter_rust_bridge :: for_generated :: anyhow:: Error > :: Ok (
175
175
flutter_rust_bridge:: for_generated:: rust_auto_opaque_encode (
176
176
crate :: api:: polars:: Expr :: sum ( api_that) ,
177
177
) ,
@@ -195,7 +195,7 @@ fn wire_LazyFrame_collect_impl(
195
195
move |context| {
196
196
transform_result_dco ( ( move || {
197
197
let api_that = api_that. rust_auto_opaque_decode_owned ( ) ?;
198
- Result :: < _ , anyhow:: Error > :: Ok (
198
+ Result :: < _ , flutter_rust_bridge :: for_generated :: anyhow:: Error > :: Ok (
199
199
flutter_rust_bridge:: for_generated:: rust_auto_opaque_encode (
200
200
crate :: api:: polars:: LazyFrame :: collect ( api_that) ,
201
201
) ,
@@ -221,7 +221,7 @@ fn wire_LazyFrame_filter_impl(
221
221
transform_result_dco ( ( move || {
222
222
let api_that = api_that. rust_auto_opaque_decode_owned ( ) ?;
223
223
let api_predicate = api_predicate. rust_auto_opaque_decode_owned ( ) ?;
224
- Result :: < _ , anyhow:: Error > :: Ok (
224
+ Result :: < _ , flutter_rust_bridge :: for_generated :: anyhow:: Error > :: Ok (
225
225
flutter_rust_bridge:: for_generated:: rust_auto_opaque_encode (
226
226
crate :: api:: polars:: LazyFrame :: filter ( api_that, api_predicate) ,
227
227
) ,
@@ -246,7 +246,7 @@ fn wire_LazyFrame_group_by_impl(
246
246
transform_result_dco ( ( move || {
247
247
let api_that = api_that. rust_auto_opaque_decode_owned ( ) ?;
248
248
let api_expr = api_expr. rust_auto_opaque_decode_owned ( ) ?;
249
- Result :: < _ , anyhow:: Error > :: Ok (
249
+ Result :: < _ , flutter_rust_bridge :: for_generated :: anyhow:: Error > :: Ok (
250
250
flutter_rust_bridge:: for_generated:: rust_auto_opaque_encode (
251
251
crate :: api:: polars:: LazyFrame :: group_by ( api_that, api_expr) ,
252
252
) ,
@@ -271,7 +271,7 @@ fn wire_LazyGroupBy_agg_impl(
271
271
transform_result_dco ( ( move || {
272
272
let api_that = api_that. rust_auto_opaque_decode_owned ( ) ?;
273
273
let api_expr = api_expr. rust_auto_opaque_decode_owned ( ) ?;
274
- Result :: < _ , anyhow:: Error > :: Ok (
274
+ Result :: < _ , flutter_rust_bridge :: for_generated :: anyhow:: Error > :: Ok (
275
275
flutter_rust_bridge:: for_generated:: rust_auto_opaque_encode (
276
276
crate :: api:: polars:: LazyGroupBy :: agg ( api_that, api_expr) ,
277
277
) ,
@@ -361,7 +361,7 @@ impl CstDecode<usize> for usize {
361
361
self
362
362
}
363
363
}
364
- impl SseDecode for anyhow:: Error {
364
+ impl SseDecode for flutter_rust_bridge :: for_generated :: anyhow:: Error {
365
365
fn sse_decode ( deserializer : & mut flutter_rust_bridge:: for_generated:: SseDeserializer ) -> Self {
366
366
unimplemented ! ( "not yet supported in serialized mode, feel free to create an issue" ) ;
367
367
}
@@ -514,7 +514,7 @@ impl flutter_rust_bridge::IntoIntoDart<crate::api::mandelbrot::Size>
514
514
}
515
515
}
516
516
517
- impl SseEncode for anyhow:: Error {
517
+ impl SseEncode for flutter_rust_bridge :: for_generated :: anyhow:: Error {
518
518
fn sse_encode ( self , serializer : & mut flutter_rust_bridge:: for_generated:: SseSerializer ) {
519
519
<String >:: sse_encode ( format ! ( "{:?}" , self ) , serializer) ;
520
520
}
0 commit comments