feat(client): Implement RawRequestBuilder
for raw HTTP requests
#190
Annotations
2 warnings
The following actions use a deprecated Node.js version and will be forced to run on node20: giraffate/clippy-action@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
src/client.rs#L179
[clippy] reported by reviewdog 🐶
warning: very complex type used. Consider factoring parts into `type` definitions
--> src/client.rs:179:10
|
179 | ) -> RawRequestBuilder<
| __________^
180 | | '_,
181 | | fn(http::request::Builder) -> hyper::Request<BoxBody<hyper::body::Bytes, Infallible>>,
182 | | > {
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
Raw Output:
src/client.rs:179:10:w:warning: very complex type used. Consider factoring parts into `type` definitions
--> src/client.rs:179:10
|
179 | ) -> RawRequestBuilder<
| __________^
180 | | '_,
181 | | fn(http::request::Builder) -> hyper::Request<BoxBody<hyper::body::Bytes, Infallible>>,
182 | | > {
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity
= note: `#[warn(clippy::type_complexity)]` on by default
__END__
|
This job succeeded
Loading