2019-08-13 09:13:50 -04:00
|
|
|
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
|
2019-08-08 15:57:32 +02:00
|
|
|
--> $DIR/ref-struct-async.rs:15:52
|
|
|
|
|
|
|
|
|
LL | async fn ref_Struct(self: &Struct, f: &u32) -> &u32 {
|
2019-08-13 09:13:50 -04:00
|
|
|
| ^^^^
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
= note: hidden type `impl std::future::Future` captures lifetime '_#18r
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error: lifetime may not live long enough
|
|
|
|
--> $DIR/ref-struct-async.rs:15:57
|
|
|
|
|
|
|
|
|
LL | async fn ref_Struct(self: &Struct, f: &u32) -> &u32 {
|
|
|
|
| _______________________________-_________________________^
|
|
|
|
| | |
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
LL | | f
|
|
|
|
LL | | }
|
|
|
|
| |_____^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
|
|
|
|
|
|
|
|
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
|
|
|
|
--> $DIR/ref-struct-async.rs:19:61
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
|
|
|
LL | async fn box_ref_Struct(self: Box<&Struct>, f: &u32) -> &u32 {
|
2019-08-13 09:13:50 -04:00
|
|
|
| ^^^^
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
= note: hidden type `impl std::future::Future` captures lifetime '_#18r
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error: lifetime may not live long enough
|
|
|
|
--> $DIR/ref-struct-async.rs:19:66
|
|
|
|
|
|
|
|
|
LL | async fn box_ref_Struct(self: Box<&Struct>, f: &u32) -> &u32 {
|
|
|
|
| _______________________________________-__________________________^
|
|
|
|
| | |
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
LL | | f
|
|
|
|
LL | | }
|
|
|
|
| |_____^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
|
|
|
|
|
|
|
|
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
|
|
|
|
--> $DIR/ref-struct-async.rs:23:61
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
|
|
|
LL | async fn pin_ref_Struct(self: Pin<&Struct>, f: &u32) -> &u32 {
|
2019-08-13 09:13:50 -04:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: hidden type `impl std::future::Future` captures lifetime '_#18r
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
|
|
|
--> $DIR/ref-struct-async.rs:23:66
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
LL | async fn pin_ref_Struct(self: Pin<&Struct>, f: &u32) -> &u32 {
|
|
|
|
| _______________________________________-__________________________^
|
|
|
|
| | |
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
LL | | f
|
|
|
|
LL | | }
|
|
|
|
| |_____^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
|
|
|
|
--> $DIR/ref-struct-async.rs:27:70
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
|
|
|
LL | async fn box_box_ref_Struct(self: Box<Box<&Struct>>, f: &u32) -> &u32 {
|
2019-08-13 09:13:50 -04:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: hidden type `impl std::future::Future` captures lifetime '_#18r
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
|
|
|
--> $DIR/ref-struct-async.rs:27:75
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
LL | async fn box_box_ref_Struct(self: Box<Box<&Struct>>, f: &u32) -> &u32 {
|
|
|
|
| _______________________________________________-___________________________^
|
|
|
|
| | |
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
LL | | f
|
|
|
|
LL | | }
|
|
|
|
| |_____^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
|
|
|
|
--> $DIR/ref-struct-async.rs:31:66
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
|
|
|
LL | async fn box_pin_Struct(self: Box<Pin<&Struct>>, f: &u32) -> &u32 {
|
2019-08-13 09:13:50 -04:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: hidden type `impl std::future::Future` captures lifetime '_#18r
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
|
|
|
--> $DIR/ref-struct-async.rs:31:71
|
2019-08-08 15:57:32 +02:00
|
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
LL | async fn box_pin_Struct(self: Box<Pin<&Struct>>, f: &u32) -> &u32 {
|
|
|
|
| ___________________________________________-___________________________^
|
|
|
|
| | |
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
| | lifetime `'_` defined here
|
|
|
|
LL | | f
|
|
|
|
LL | | }
|
|
|
|
| |_____^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
error: aborting due to 10 previous errors
|
2019-08-08 15:57:32 +02:00
|
|
|
|
2019-08-13 09:13:50 -04:00
|
|
|
For more information about this error, try `rustc --explain E0700`.
|