Show task blockers on hover #103
Draft
Annotations
4 warnings
|
crates/service/src/grpc.rs#L106
[clippy] reported by reviewdog 🐶
warning: the `Err`-variant returned from this function is very large
--> crates/service/src/grpc.rs:106:51
|
106 | fn verify_auth<T>(request: &tonic::Request<T>) -> Result<(), tonic::Status> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 176 bytes
|
= help: try reducing the size of `tonic::Status`, for example by boxing large elements or replacing it with `Box<tonic::Status>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
Raw Output:
crates/service/src/grpc.rs:106:51:w:warning: the `Err`-variant returned from this function is very large
--> crates/service/src/grpc.rs:106:51
|
106 | fn verify_auth<T>(request: &tonic::Request<T>) -> Result<(), tonic::Status> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 176 bytes
|
= help: try reducing the size of `tonic::Status`, for example by boxing large elements or replacing it with `Box<tonic::Status>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
__END__
|
|
crates/service/src/grpc.rs#L71
[clippy] reported by reviewdog 🐶
warning: the `Err`-variant returned from this function is very large
--> crates/service/src/grpc.rs:71:6
|
71 | ) -> Result<tonic::Response<ReceiverStream<Result<U, tonic::Status>>>, tonic::Status>
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 176 bytes
|
= help: try reducing the size of `tonic::Status`, for example by boxing large elements or replacing it with `Box<tonic::Status>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
Raw Output:
crates/service/src/grpc.rs:71:6:w:warning: the `Err`-variant returned from this function is very large
--> crates/service/src/grpc.rs:71:6
|
71 | ) -> Result<tonic::Response<ReceiverStream<Result<U, tonic::Status>>>, tonic::Status>
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 176 bytes
|
= help: try reducing the size of `tonic::Status`, for example by boxing large elements or replacing it with `Box<tonic::Status>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
__END__
|
|
crates/service/src/grpc.rs#L43
[clippy] reported by reviewdog 🐶
warning: the `Err`-variant returned from this function is very large
--> crates/service/src/grpc.rs:43:6
|
43 | ) -> Result<tonic::Response<BoxStream<'static, Result<U, tonic::Status>>>, tonic::Status>
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 176 bytes
|
= help: try reducing the size of `tonic::Status`, for example by boxing large elements or replacing it with `Box<tonic::Status>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
Raw Output:
crates/service/src/grpc.rs:43:6:w:warning: the `Err`-variant returned from this function is very large
--> crates/service/src/grpc.rs:43:6
|
43 | ) -> Result<tonic::Response<BoxStream<'static, Result<U, tonic::Status>>>, tonic::Status>
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 176 bytes
|
= help: try reducing the size of `tonic::Status`, for example by boxing large elements or replacing it with `Box<tonic::Status>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
__END__
|
|
crates/service/src/account/service.rs#L347
[clippy] reported by reviewdog 🐶
warning: the `Err`-variant returned from this function is very large
--> crates/service/src/account/service.rs:281:6
|
281 | ) -> Result<(String, DateTime<Utc>), Error> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
347 | Request(#[from] tonic::Status),
| ------------------------------ the largest variant contains at least 176 bytes
|
= help: try reducing the size of `account::service::Error`, for example by boxing large elements or replacing it with `Box<account::service::Error>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
= note: `#[warn(clippy::result_large_err)]` on by default
Raw Output:
crates/service/src/account/service.rs:347:5:w:warning: the `Err`-variant returned from this function is very large
--> crates/service/src/account/service.rs:281:6
|
281 | ) -> Result<(String, DateTime<Utc>), Error> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
347 | Request(#[from] tonic::Status),
| ------------------------------ the largest variant contains at least 176 bytes
|
= help: try reducing the size of `account::service::Error`, for example by boxing large elements or replacing it with `Box<account::service::Error>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
= note: `#[warn(clippy::result_large_err)]` on by default
__END__
|
The logs for this run have expired and are no longer available.
Loading