use 'IntoFuture' trait #239
Annotations
13 errors
docs
Process completed with exit code 101.
|
test (stable)
Process completed with exit code 101.
|
struct takes 1 generic argument but 0 generic arguments were supplied:
src/endpoints/feed_items.rs#L121
error[E0107]: struct takes 1 generic argument but 0 generic arguments were supplied
--> src/endpoints/feed_items.rs:121:29
|
121 | impl<'a> IntoFuture for Request<'a> {
| ^^^^^^^ expected 1 generic argument
|
note: struct defined here, with 1 generic parameter: `C`
--> src/endpoints/feed_items.rs:20:16
|
20 | pub struct Request<'a, C>
| ^^^^^^^ -
help: add missing generic argument
|
121 | impl<'a> IntoFuture for Request<'a, C> {
| +++
|
struct takes 1 generic argument but 0 generic arguments were supplied:
src/endpoints/transactions/list.rs#L85
error[E0107]: struct takes 1 generic argument but 0 generic arguments were supplied
--> src/endpoints/transactions/list.rs:85:25
|
85 | impl<'a> IntoFuture for Request<'a> {
| ^^^^^^^ expected 1 generic argument
|
note: struct defined here, with 1 generic parameter: `C`
--> src/endpoints/transactions/list.rs:14:12
|
14 | pub struct Request<'a, C>
| ^^^^^^^ -
help: add missing generic argument
|
85 | impl<'a> IntoFuture for Request<'a, C> {
| +++
|
struct takes 1 generic argument but 0 generic arguments were supplied:
src/endpoints/transactions/get.rs#L60
error[E0107]: struct takes 1 generic argument but 0 generic arguments were supplied
--> src/endpoints/transactions/get.rs:60:25
|
60 | impl<'a> IntoFuture for Request<'a> {
| ^^^^^^^ expected 1 generic argument
|
note: struct defined here, with 1 generic parameter: `C`
--> src/endpoints/transactions/get.rs:11:12
|
11 | pub struct Request<'a, C>
| ^^^^^^^ -
help: add missing generic argument
|
60 | impl<'a> IntoFuture for Request<'a, C> {
| +++
|
lint
Clippy had exited with the 101 exit code
|
test (windows)
The operation was canceled.
|
test (nightly)
The job was canceled because "stable" failed.
|
test (nightly)
The operation was canceled.
|
test (msrv)
The job was canceled because "stable" failed.
|
test (msrv)
The operation was canceled.
|
test (macos)
The job was canceled because "stable" failed.
|
test (macos)
The operation was canceled.
|